I extracted a date out of a MySQL database:
echo $nextup['date']
which is echoed as an DATETIME:
2014-03-19 15:21:42
Now, I'd like to convert/cast this to a readable form:
19 March 2014 15:21:42
but I couldn't find how. I've read the date/time manual for PHP but it doesn't say how to convert.
Thanks in advance!