I had to update from PHP 7.3 to 7.4. Now I get errors, I suppose, cause I did not define the default value 0, which is a requirement in PHP 8. Here's the error:
A PHP Error was encountered
Severity: Notice
Message: Trying to access array offset on value of type null
Filename: views/sponsorship.php
Line Number: 17
(also lines 27, 28)
Basic. it should show an empty field. When the field has a value (the name of somebody) it works fine.
Here's line 17
<th><?php echo $sponsorship['from']['id'] == $this->session->userdata('id') ? 'present to:' : 'present from:' ?></th>