Say I have 50 rows in a MySQL table. I want to select the first ten (LIMIT 10), but then I want to be able to select the next 10 on a different page.
LIMIT 10
So how do I start my selection, after row 10?
Updated query:
mysql_query(" SELECT * FROM `picdb` WHERE `username` = '$username' ORDER BY `picid` DESC LIMIT '$start','$count' ")
I recommend working by obtaining the first page using:
LIMIT 0, 10
then for the second page
LIMIT 10, 10
then
LIMIT 20, 10
for the third page, and so on.
2.1m questions
2.1m answers
60 comments
57.0k users