PDA

View Full Version : retrieve data in reverse


trafix
03-27-2003, 06:37 AM
ok
this selects and displays the data in order

$voteleader = $DB_site->query("SELECT * FROM memberschoice ORDER BY votes");

what do i use to display the data in reverse order?

thanks in advance

Xenon
03-27-2003, 10:44 AM
$voteleader = $DB_site->query("SELECT * FROM memberschoice ORDER BY votes DESC");

trafix
03-27-2003, 11:36 AM
Thanks Xennon,

With trial and error i worked it out.

Needed it for the Members Choice Voting Hack.

Im still fairley green when it comed to mysql and php tags but i think i am doing ok for a newbie