Hello everyone. i know this could be wrong place to post this. But im in a big crisis. Can anyone tell me how i make ÅÄÖ displayable on .xml files. When i write down something like "Jag är". It always ends up with "Jag r"
I guess you should replace them with html codes, see http://php.net/manual/en/function.htmlentities.php probably enclosing those items in CDATA sections would do it as well
Where is the XML file hosted? Is it an XML file that you create? You can look at the encoding at the top of the file, which will look something like <?xml version="1.0" encoding="UTF-8"?>, but for extended characters you will need to explicitly specify <?xml version="1.0" encoding="UTF-16"?> else it will show only UTF8 characters by default. Hope this helps!