I have a website that is in German, French, Italian, Spanish and English.
The $date() or $mktime() functions result in numerical dates or text dates in English.
How do I get the results in other languages.
Ex: mktime(0, 0, 0, date("m"), date("d"), date("y"));
date("l F N Y", date());
will result in Friday May 23 2008
but I want this in French :
Vendredi Mai 23 2008
or Italian, or German, etc.
How do I do this?
Marc