I'm attempting to paginate my page and need to add in a menukey but i'm having no success.
This is my link to the first page of the table produced:
function renderFirst($tag='First') {
if($this->page == 1) {
return $tag;
}
else {
return '<a href="'.$this->php_self.'?page=1">'.$tag.'</a>';
}
}
and I need to add in the menukey:
index.php?menukey=12
Where does this get added in the pagination code?