Hi!
In MySql you can especify the number of rows you want to be returned by a query. For exemple.
SELECT * FROM TABLE_NAME LIMIT 1, 10;
This query will return the 10 first rows. When you want to retrive the next group, simply run this query:
SELECT * FROM TABLE LIMIT 11, 10
AND SO ON...
Review the Mysql Manual (Select syntax)