My query is this…
SELECT a.ID, a.time, a.quote, a.quantity, a.media, a.print, a.pack
FROM quotes a
It returns my dates like this…
How do I make the results come back as March 2, 2012 or 05/04/2012 or something meaningful?
UPDATE – FROM_UNIXTIME answers below list all records as having time when I run the query – I need the time the records were originally created – NOT the query time.
Any other ideas?

Try to use this function: FROM_UNIXTIME
In your case it will be something like this (for first example):
Also what you might want to do is to to give result an alias:
And then you will be accessing result of formating as
formatted_timenottime…NOTICE: Please observe that time column name is in backticks
Lac of back ticks caused query to return current time instead of value of time column