Right now im sorting by each articles auto_increment id with the query below
mysql_query(\"SELECT * FROM articles ORDER BY id DESC\");
I wanna
Just change the column in the ORDER BY:
SELECT * FROM articles ORDER BY time DESC