I have no idea how you are managing your paging.
You should use LIMIT to get the relevant pages.
Each page needs to "know" which page it is. You do this by passing a variable from page to page with the navigation.
http://www.mydomain.com/index.php?Page=1
inside index.php your query should look like :
Code:
$Query="SELECT * FROM MyTABLE WHERE.....";
$Query .= " LIMIT " . ($page-1)*$NumberOfItemsToShow . ",$NumberOfItemsToShow";
_________________
Sincerely
berber
Visit the Weber Sites Today,
To see where PHP might take you tomorrow.
PHP code examples :
http://www.weberdev.com
PHP & MySQL Forums :
http://www.weberforums.com/
Learn PHP Playing Trivia
http://www.webertrivia.com
Search for PHP Code Examples
http://www.php-code-search.com