Forum Moderators: coopster
SELECT * FROM nieuws ORDER BY ID DESC LIMIT 8
I do not want to display those 8 rows in the archive. I tried several things but I keep ending up with some or all of the front-page entries in the archive.
Can someone tell me how I can do this?
Thanks in advance,
Stefan
from
[dev.mysql.com...]
(you can search that page for LIMIT)
LIMIT offset, row_count
initial offset is 0 so you could do
LIMIT 7,8
this would give you the next 8 results