Hi everybody 🙂
Is it possible to sort results from a mysql table in the opposite way it normally does?
eg.. if i use something like:
$result = mysql_query("select * from news order by id") or die (mysql_error());
while($r=mysql_fetch_array($result))
and id was:
1
2
3
4
etc..
Could I make it sort out the info so it would appear on the page as:
4
3
2
1
etc..?
thanks 🙂 I hope that made sense.. lol