When I enter entries into my mysql table I put the id as a timestamp (Time()😉. How could I use a mysql query to fetch the entries according to timestamp?
Is ID the primary key?
If not
SELECT * FROM table ORDER BY id DESC
or
SELECT * FROM table ORDER BY id ASC