jakeoh Posted November 14, 2007 Share Posted November 14, 2007 Hi, I have the following code to display the name of the month in French: setlocale(LC_ALL, 'fr_FR@euro'); $header = strftime('%B', mktime(0,0,0,$this->month,1,$this->year)).' '.$this->year; This works great, but the accentuated characters (é, û) are replaced with ? in Firefox and a square in IE. How do I get around this so that it displays the correct characters? Link to comment https://forums.phpfreaks.com/topic/77343-solved-setlocale-date-and-accentuated-characters/ Share on other sites More sharing options...
jakeoh Posted November 15, 2007 Author Share Posted November 15, 2007 Anyone? Link to comment https://forums.phpfreaks.com/topic/77343-solved-setlocale-date-and-accentuated-characters/#findComment-391861 Share on other sites More sharing options...
Daukan Posted November 15, 2007 Share Posted November 15, 2007 Adding these meta tags should help. Its your encoding. You have to specify a character set <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> <meta http-equiv="content-language" content="fr-FR" /> <meta name="language" content="fr-FR" /> Or just this <meta http-equiv="content-type" content="text/html; charset=utf-8" /> But somebody else might know better or google on how to add french char set to html header Link to comment https://forums.phpfreaks.com/topic/77343-solved-setlocale-date-and-accentuated-characters/#findComment-391873 Share on other sites More sharing options...
jakeoh Posted November 15, 2007 Author Share Posted November 15, 2007 I tried with the meta tags, but to no avail; it kept on displaying the ? in Firefox and the box in Explorer. However this solved the problem: setlocale(LC_ALL, 'fr_FR@euro'); $header = strftime('%B', mktime(0,0,0,$this->month,1,$this->year)).' '.$this->year; $header = htmlentities($header); Link to comment https://forums.phpfreaks.com/topic/77343-solved-setlocale-date-and-accentuated-characters/#findComment-392353 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.