That is a date column, not timestamp. And sadly enough, that means just a little more work for you.
There are two ways to do this, one is using PHP. You can use the function mktime() (
PHP: mktime - Manual) to plug in your output and use date() to get the exact format you want.....
Or, just use MySQL to do it. (
MySQL :: MySQL 5.0 Reference Manual :: 11.6 Date and Time Functions)
So you will do something like:
select date_format('<FORMAT YOU WANT>', date_column_name) from table etc....