Alphabetize output of a MySQL database

A

Anonymous

Guest
How would you alphabetize the output of a MySQL database using php?

Thanks,
 
Either dump the result set into an array and sort it using a php array_sort function, or just sort it before you get it from the database using sql.

ind list of functions on http://www.php.net
 
Back
Top