Ok i have this in my mysql database in a datetime field
2011-12-30 14:07:46
i need using php to use this format
December 30, 2011, 2:07 pm
so i used this
date("F j, Y, g:i a", $system['date_added']);
but the outcome was this error
A non well formed numeric value encountered in quote.php on line 56
and this outcome
December 31, 1969, 4:33 pm
I know there is
print_r(date_parse($system['date_added']));
but i get an array....any ideas on an easy way to address this