I'm building a multilingual website that uses PHP to load language files. Paragraphs in the language file are set in define() constants. After opening page in the browser I get a bunch of characters like "?". In the markup I have encoding set to utf-8. What can be done to make it work other than replacing all unknown characters with html character entities?
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.
|
as long as your data is ut8, the template and html files are utf8 and you explicitely specify the html page is utf8, it should work. EDIT: the code embedding thing is a bit broken today... have to insert a space at the tag opening.weird |
|||||||||
|
|
header('Content-Type:text/html; charset=UTF-8'); use this line on the top of your PHP code to send header; also helps with validation of dynamic pages to get rid of utf warning. |
|||
|
|