Does anyone know how to format the output of a MySQL date query ?
e.g. Start_Date= 2000-12-30 which I want to display it as December 30, 2000.
I want to do this at the PHP level not the query level ?
Thanks.
[man]date[/man], [man]strtotime[/man]
$date = date("F d, Y", strtotime($date_to_format));
Many thanks LordShryku. It works fine.