Heya, I need some help with a MySQL field....
I want to get them into decending order how do i do it?
thx - lez
SELECT field FROM table ORDER BY field DESC
still no luck :/
Why not? What's it doing? What are you sorting? What's the output?
$result = mysql_query("SELECT field FROM table ORDER BY field ASC");
Change ASC with DESC, etc. I don't see why it wouldn't work?