Hello --
Im using mysql / php myadmin i am fetching from my data base onto my website for a little blog script. I would like to have the most recent entries be first, and the older ones decend accordingly. http://www.eksmith.com is where the blog is located. Can anyone help me...thanks
--Erik
This would probably be best posted in the database forum but the answer is still simple:
You need a timestamp or datetime field in your MySQL database entries table
entries
$sql = "SELECT * FROM entries ORDER BY createdon DESC";