BenGriffiths / pdo-mysqli-pagination

A PDO & MySQLi PHP Pagination Class - PDO MySQLi Pagination class is a PHP pagination class that will work with either PDO, or MySQLi. The outputted pagination is served as a UL or as an array, and the options are extensive.
50 stars 27 forks source link

what happens if $page / $_REQUEST['page'] > $paginate->total_pages #15

Closed satrianivzla closed 10 years ago

satrianivzla commented 10 years ago

Hi There I am testing your script and if you put manually a value of $page / $_REQUEST['page'] > than $paginate->total_pages the $paginate->links_html is show but there is nothing to paginate because is not a valid value. How I should fix it? cheers

satrianivzla commented 10 years ago

if ($_REQUEST['page'] > $paginate->total_pages) { header( 'Location: your-url' ) ; }