I've got mysql listing by date which is fine expect I want the most recent date to appear at the top rather than at the bottom!
any ideas?
$query_items = "SELECT * FROM news ORDER BY date";
Try this $query_items = "SELECT * FROM news ORDER BY date DESC";
HalfaBee
Thanks worked a treat!