one way is to use LIMIT at the end of your query
WHERE id=1
LIMIT 0, 5 //first 5 records
LIMIT 5, 10 // records 5-15
etc.
Here's a typical strategy
You'd display the first 5 number of records in a table.
(LIMIT 0, 5)
Add links at the end of the table (<a href=mysearch.php?nextrecord=5>NEXT 5 RECORDS</a>
Then take the variable $nextrecord and use it to create a new LIMIT clause
LIMIT $nextrecord, 5
You'd write a new NEXT link (nextrecord=10) and, probably a PREVIOUS link.
etc.
Make sense?