So the xml has:
<?xml version="1.0" encoding="ISO-8859-15"?>
and I'm supposed to load some of the nodes values and save to them. What encodings am I supposed to use? At the moment I'm using utf8_encode() which is kind of silly, but it works on save, but when I have to load the value again, it having scandic characters "ÅÄÖ", it shows like "Ääliö".
What can I use to encode the string to save and load to/from xml on php? The thing here is with the Scandinavian characters..
edit: sorry, i forgot to put the xml tag in {}...
edit: At the moment I'm using DOM Xpath to read and modify the xml file.