to format a mysql datetime to your needs use something like:
echo date("F j, Y, g:i a",strtotime($mysql_datefield));
Which will yield a date formatted like so:
See the php date function documentation for date formatting syntax.