![]() |
rying to access array offset on value of type null" at line 3460 in this code snippet - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: rying to access array offset on value of type null" at line 3460 in this code snippet (/showthread.php?tid=87139) |
rying to access array offset on value of type null" at line 3460 in this code snippet - TeetharKehar - 03-17-2023 What could be causing a PHP notice of "Trying to access array offset on value of type null" at line 3460 in this code snippet? Code: for ($i = 0; $i < $iCount; $i++) { RE: rying to access array offset on value of type null" at line 3460 in this code snippet - newcicoder - 03-19-2023 Check whether Code: $row[$i] exists and Code: $row[$i]['id'] exists. |