I really hate to say RTFM because it sounds so negative, but this really is a simple problem to solve. The MySQL manual has a very detailed explaination on how to format dates in the SQL statement using the date_format() function.
Like I said in my first post you will do something like:
select date_format(post_date, '%M %D, %Y %H:%i:s') as post_date from table
That will get you a time stamp that looks like this:
June 12th, 2001 17:09:18
But there are many ways to format a timestamp using the date_format() function so read the manual at http://www.mysql.com/documentation/mysql/index.html