Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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";

share|improve this question
Can you add a sample of what there is in your spanish translation file? – Geoffrey Brier Jul 25 '12 at 9:46
If you're getting ? 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:56
Try calling utf8_decode on your translation before displaying it ($lang['zip_code']). – Geoffrey Brier Jul 25 '12 at 10:06
Well only change one to see if it's the problem, when I'm having encoding problems I usually try utf8_encode and utf8_decode functions. – Geoffrey Brier Jul 25 '12 at 10:15
@GeoffreyBrier I tried to encode it in the file and then directly used the variable and it worked. Should I need to do this for each and every varialbe ???? – karate panda Jul 25 '12 at 10:29
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.