Heh,
I spent weeks working on this. I have finally got it in only a few codes.
// This is the amount of records per page
$limit = 10;
// If $page has not been set then set it to 0
if (!isset ($page) {
$page = 0;
}
$results = mysql_query ("Select from blah limit ".($page $limit).",".$limit.";", $db);
$result_row = mysql_fetch_row ($results);
Now all you need to do is echo or print the table onto a page. Then insert about 5 IF statements with all
combinations of the Previous and Next buttons and just use a href like the following:
<a href=blah.php?page=".($page +1).">Next Page</a>
then just do -1 for the previous page etc...
I hope this helps!
Let me know if you get stuck and i'll be happy to help.
Thanks!