Tuesday, September 10, 2013

[php][solved] Undefined offset

A PHP Error was encountered
Severity: Notice
Message: Undefined offset: 4
Filename: files/f_new4_edit.php
Line Number: 584

The reason i got is because the array is not enough to store the value.

Change the Array from :
$temp_value= Array("","","","");
To
$temp_value= Array("","","","","");

No comments :

Post a Comment