I'm back with a new tutorial!
You do not need sql for this..

To use this tutorial you need a basic understand of queries and the LIMIT function.
This script will allow you to move forward and backwards through entries... In the future I may quickly add an addition to this to show all the pages in between and count up the pages, but for now, here goes the tutorial...
I'll break this down... This can go anywhere at all in the script...
<a href="<?php echo $_SERVER['SCRIPT_NAME'];?>?results=<?php echo $number_of_results;?>&page=<?php echo ($page-1);?>">Previus <?php echo $number_of_results;?> entries</a>
This is a simple <a href=""></a> link with lots of coding inside of it...
The $_SERVER['SCRIPT_NAME']; grabs the name of the script being run (the script you put this in). The other values just echo the variables to embed the previous page number in the script.
<a href="<?php echo $_SERVER['SCRIPT_NAME'];?>?results=<?php echo $number_of_results;?>&page=<?php echo ($page+1);?>">Next <?php echo $number_of_results;?> entries</a>
This bunch does the same thing as the previous block of code but instead of embeding the previous page number, it embeds the next page number.
There is not that much to it... I only called it Intermediate because you'll need to know SQL to use it properly...
I have only tested this in the script I originally made it it, please post any problems if any arise.
-Tim
Edit: Added this...
$db = mysql_connect("$dbHost", "$dbUser", "$dbPass") or die("Unable to connect!");
mysql_select_db($dbname,$db);
$querytocheck = "SELECT * FROM OurTable";
$queryresource = mysql_query ($querytocheck,$db);
$NumRows = msql_num_rows($queryresource);
$PageCount = ceil($NumRows/$number_of_results);
for ($i=0; $PageCount>$i; $i++)
{
if ($i!=$page)
echo '<a href="'.$_SERVER['SCRIPT_NAME'].'?results='.$number_of_results.'&page='.$i.'"> '.$i.' </a>';
else
echo " $i ";
}
It should display all the pages... you need to setup the query yourself... instead of the * I suggest you just pick one variable such as an ID or such so that the MySQL load is lower...

Feel free to test out the thing under the edit... I've never tested it, just made it a second ago, so I don't know if it works... it should work though...