index.php
$result = mysql_query("select * from news") or
die (mysql_error());
Ok - the above retrieves all records from the database called news, correct?
Well, it does, so... how can I retrieve a selected number of records in order? I have an ID field in which each record is given a unique id so how can I retrieve from that id in order. So for instance... 0 is last. 1 is second. 2 is third. So if I had three articles, the article number 3 with id 2 would be at the top?
Thanks,
Chris