This bit of code is causing a PHP error (actually a notice) at line 3460:
Trying to access array offset on value of type null. Any idea why this is happening?
for ($i = 0; $i < $iCount; $i++) {
if ($row[$i]['id']==NULL) << this is the line with the error
continue;
$bcs = @(implode(',', array_intersect_key($_SESSION['business_components'], array_flip(explode(',', $row[$i]['bc'])))));
$this->db->set('business_component_txt', $bcs);
$id=$row[$i]['id'];
$this->db->where('id', $id); //this is the id of the row we are updating
$this->db->update('rental',);
}
proof that an old dog can learn new tricks