The query that pulls the data should be set up something like:
SELECT id_number, field_1, field_2 FROM table_name ORDER BY id_number DESC
Ideally you should have a field in that table that records the timestamp the record was created and then order by that field. If you you have a field that records the date, order by that instead of the ID.