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.
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'
")

picdbWHEREusername= '$username' ORDER BYpicidDESC LIMIT $start,$count") – Rufinus Aug 10 at 0:32LIMITclause is before yourORDER BYclause. – chaos Aug 10 at 0:32