As far as I know to select last 7 rows from MySQL table in backward order, it needs to be done:
SELECT * FROM `table` ORDER BY id DESC LIMIT 7;
B