I have an array coming from a mysql statement. It is being convered into an array using mysql_fetch_array. This is then fed into a while loop. I want the array to be reversed.
Currently it is printing the results as
Bob, 23
Steve, 26
However I want it to echo Steve before Bob. How could I do this?