Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Actually i dont really know how to express myself.

I need to do a system where products from a database are showed on a page. This part is done.

But now i want if there is more than 20 products put the next one on page 2 and the other 20 ones on 3 and so on...

But the thing is that i dont have a clue on whats the best way to do it.

i thought of counting the number of products then divide it by 20 but how to write the sql for page 1 and page 2 ...

i guess il should look like select * from products limit 20

but what then on page 2.

thanks

share|improve this question
3  
there are far too many "how to implement pagination" questions/answers on this site. look for them. they're all basically the same. – Marc B Jan 8 at 21:00
@MarcB - not all. stackoverflow.com/a/14184729/367456 – hakre Jan 8 at 21:05
I would use JQuery datatables datatables.net – sdespont Jan 8 at 22:25

closed as too localized by Marc B, hakre, jeroen, Andrew Barber, Jocelyn Jan 9 at 0:38

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

The keyword you are looking for is OFFSET.

SELECT ... FROM ... WHERE ... LIMIT 20 OFFSET 40

will give you 20 results from the query after skipping the first 40.

Alternatively, if your results are sorted on some unique value (say, if you're displaying rows sorted by their ID), you can add that as a condition:

SELECT ... FROM ... WHERE ... AND id > ? LIMIT 20

Where ? is a placeholder containing the id of the last row on the previous page. (But note that this technique will only allow you to go forward or back one page at a time.)

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.