You have to sort the results. If in alphabetical order, try this:
SELECT dishes FROM food_table <B>ORDER BY dishes ASC</B>
This would read
7up
beans
chips
coke
Or this one:
SELECT dishes FROM food_table <B>ORDER BY dishes DESC</B>
This would read
coke
chips
beans
7up
Other that that, you have to store the results into an array and the sort that array in the order you want. Or sort the results by another field.
Hope this helps
fLIPIS