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?
For example, the last entry is shown first, then the entry before that, then the entry before that, etc. The first entry ever is last.
ORDER BY ID DESC WHERE ID < :spec_limit LIMIT 15where :spec_limit is a returned last_row ID with your call, then a button can call the next 15 from the last known id (assuming data is fixed)