I have a basic write to and retrieve sql database php \"thing\" and I want to have the output in descending order. How do I do that?
Eg. last entry is shown first,
Change the ORDER BY statement
ORDER BY
ORDER BY col
ORDER BY col ASC
ORDER BY col DESC