I got some work related to multilingual. before going to live I tried a demo at my local. I am using different language files for different languages.
These languages are having different variables in it. When I include that language file in my main file then it shows ? characters instead of spanish/purtogish text. My HTML page charset is UTF-8 which is ok.
When I don't inlclude the file and directly have the variables in my main file then it works ??
can any body help where is the problem ??
Sample Text : $lang['zip_code'] = "código postal";
?symbols for text in the browser, you probably have an encoding issue. It could be that you're using some PHP function that is not multi-byte safe and it is returning a bad result. – jmbertucci Jul 25 '12 at 9:56utf8_decodeon your translation before displaying it ($lang['zip_code']). – Geoffrey Brier Jul 25 '12 at 10:06utf8_encodeandutf8_decodefunctions. – Geoffrey Brier Jul 25 '12 at 10:15