Hello,
Is there somebody who can help me? My problem:
How can I ORDER my results in an inverse way. And how do I write that in PHP/MySQL.
For example to get the newest news out of a database. Or to get the five highest unit_id.
Greetz Wesley
Try the following SQL
SELECT * FROM %MYTABLE% WHERE %YOUR CRITERIA% ORDER BY %DATE_COLUMN% DESC
DESC will tell it to order descending ASC is the opposite
Saludos Gerardo
Thanks Gerardo It works.