Thats what I want, but not what I'm getting. Another example is I want 7 rows starting at id 13 so I use
SELECT * FROM blog ORDER BY id DESC LIMIT 13, 7What I expect to get is first row id # 13, then 7 more down to id #6. but what I get instead is id #3, #2, and #1. Nothing more.
In my understanding, that query should never even come close to calling up those 3 ids. That is what leads me to believe it something with my query and not my coding. But if the query is correct, that makes me even more confused so I guess I'll try the php forum.