I got this error and here's my code I'm trying to display a table with a linked title but I tried to use pagination and I got this error
foreach ($actor as $projects ) {
echo '<tr><td><a href="'.
base_url('show_project?id='.
$projects['proj_id']).
'">'.
$projects['title'].
'</td><td>'.
$projects['abbrev'].
'</td><td>'.
date('F d, Y (h:i A)', strtotime($projects['date_uploaded'])).
'</td><td>'.
$projects['professor'].
'</td></tr>'
;
}