Forum Moderators: coopster
do a search for 'php pagination' in google there are tons of tutorials about it.
i believe devshed [devshed.com] has a very good one.
basically it involves determining the total number of results (mysql_num_rows) returned by the query and dividing this by the number of results you want to display per page, in order to work out how many pages to display.
then querying again using LIMIT in the mysql query to return only a certain number of results and displaying links to the next pages
sorry for not explaining more fully here, but it is fairly complicated and probably best read in a tutorial.
maybe a real guru could explain it better here ;-) do have a read in the meantime of one of the tutorials so that you understand the gist of it.
good luck