|
if you're talking about pagination than the concept is simple
basically you have a certain amounts of records that you pull from the db and you want to display them on several pages, so let's say you have 108 items, and you're displaying them 10 per page
you have 11 pages where on page 1 you pull elements from 1 to 10, on page 2 from 11 to 20 and so on
you can use the LIMIT condition in your SQL statement and use a URL variable like start=11 to know every time where to start from
|