i am running php/sql. i have my php call 100 entries from my sql database. i was wondering if there is any way i can list them in reverse order like newest to oldest. currently they are listing from 1 - whatever ( which is oldest to newest). i looked for a sort command or list by but i can't figure anything out. thanks for your help everyone!
This asssumes that the column you are wanting to sort by is named id. You could use a simple select such as this to sort the table in descending order.
SELECT * FROM db_name ORDER BY id DESC
-Troy