this needs the LIMIT in your mysql_query..
like this :
LIMIT a, b :
a is the record number that mysql should start fetching from ..
b is the number of records to be fetched ,,
meaning in my example : mysqk will fetch 10 records (b) starting from record zero (a)
and you can start bring the other ones by passing the number (a) in your links ..
that's an old script I made that do like this , take a good look at it :