I couldn't find this anywhere and I am having a hard time to fix this.
Here is my SQL query:
SELECT id, subject, content, description, date, image
FROM articles
WHERE id > $lastid
ORDER BY id ASC
LIMIT 5
This give me output in a following order id 11,12,13,14,15.
Is there a way to switch this output so it would be id 15,14,13,12,11?