I have an sql database which I am accessing through PHP, but I can`t figure out how to sort the entries by how recent they are... When I list the entries as shown below, they seem to appear in almost random order:
$theUser = mysql_query("SELECT user FROM Comments");
while($userRow = mysql_fetch_array($theUser))
{
echo $userRow["user"];
}
-----
Any ideas, I`m a little new to this
Thanks,
C