Right now this piece of code displays articles from the lowest ID the highest, in other words, the oldest is first, the newest is last. How do I reverse the order?
Code: Select all
$query = "SELECT id, title, abstract FROM article ORDER BY id";Peter