You can do this in either MySQL or PHP. I like to do it in mysql using the date_format() function. Check the mysql manual under date and time functions, chapter 7. this function will work on date, time, datetime, and timestamp columns.
You can also do "select unix_timestamp(date) as date1 from your_table" to get a unix timestamp that PHP can format. I'm not sure how that will return ifyou only have a date and a time column, though.
You'd be better off using Mysql's functions...
---John Holmes....