Does anyone know how to have you record set return in a Reverse Sort from MySQL. Or is there a way to start witht the last record and move to the first? Any help would be great.
within your SQL statement use an order by Blah desc, your can also use asc for ascending.
Example Select uid,username,fname,lname from users order by lname desc