Possible Duplicate:
strtotime With Different Languages?
Get list of localized months
I get the date time out of my database and format it like so:
$row['datetime'] = date('jS F Y',strtotime($row['datetime']));
This will put in a format:
28th March 2012
How can I localise the names of the months, so for french users it would display Mars instead of March?
Thanks