The site only displays page 1 I cannot view the other entries any suggestions. If I click page 2 it just stays on page 1 but I can search for entries and find them.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The site only displays page 1 I cannot view the other entries any suggestions. If I click page 2 it just stays on page 1 but I can search for entries and find them.
Change entry.php to:
// prepare strings
$categoryid = str_prepare($categoryid);
// if $_GET['page'] defined, use it as page number
if(isset($_GET['page']))
{
$page = $_GET['page'];
}
// Entries per Page default
if (empty($page)) {
$page = 1;
}
Tested today everything work just fine. This solution is exellent