that looks like how a datetime field is stored in a mysql database... if this is where you are getting the data from, then you can format the date however you want it inside your query...
lookup DATE_FORMAT in the mysql documentation...
here is an example:
SELECT DATE_FORMAT(date, '%M %D, %Y') AS dateformatted