My PHP code that pulls in the data is as follows:
$start = (isset($_GET['start']) ? (int)$_GET['start'] : 0);
$result = mysqli_query($con,"SELECT * FROM menuitem LIMIT $start, 4");
if (!$result) {
printf("Error: %s\n", mysqli_error($con));
exit();
}
my data is displayed with a LIMIT of 4 per page. I created a "Next" and "Previous" link that displays the next or previous four items.
echo "<table width=\"1024\" align=\"center\" >";
echo "<tr height=\"50\"></tr>";
$prev = $start - 4;
echo '<td><a href="?start=' . $prev . '">Previous Items</a></td>';
$next = $start + 4;
echo '<td><a href="?start=' . $next . '">Next Items</a></td>';
echo "</table>";
The problem I'm facing is that the "Next Items" button keeps going past the number of items I have in my database. I need to restrict this and the "Previous Items" so the "Next Items" link doesn't go beyond what my database has, and the "Previous Items" doesn't go to a negative number. I wasn't sure about how to do this. Any ideas?
Get number of rows with
And display links only when they should be displayed