Can anyone help me out.
I'm trying to order by date DESC but it's not working.
See the code below am I missing something???
$sql = ("SELECT * FROM ".$SETTINGS["data_table"]." ORDER BY date DESC limit 30");
$sql_result = mysql_query ($sql, $connection ) or die ('request "Could not execute SQL query" '.$sql);
while ($row = mysql_fetch_assoc($sql_result)) {
}
In advance thanks