There is a request of this type
SELECT a.id, a.author, a.txt, a.timestamp, b.log, b.em FROM txt_mesg a LEFT JOIN users b ON b.id = a.author WHERE a.tid = '".$id."' ORDER BY a.timestamp DESC LIMIT 12" Messages are displayed in decreasing order of time, but in ascending order.
How can such sorting be done?
ORDER BY a.timestamp DESCtoORDER BY a.timestamp ASC- ragmon