==== DATE ========= 2007-04-03 10:58:38 2007-04-04 12:58:38 2007-04-05 11:58:38 2007-04-06 22:58:38
Can someone tell me the SQL how to sort that table DESC, please.
ORDER BY is what you use
$query = "SELECT * FROM tblname ORDER BY date DESC"; $result = mysql_query($query) or die(mysql_error());
it doesnt works because the Table Data is in Timestamp format.
Why would the fact that it's a timestamp column stop it from working? What's the result of Stryker's example query?