I have parse error: parse error in /Users/.._1.php on line 4, when-ever i use this following line:
var labelXml = "<?xml version=1.0 encoding=utf-8?>";
Short open tag was always switched off:
The problem comes from the "< ? ? >" of your var...
I've tested it on my server and i got the same problem
couldn't you use something like this ?
var labelXml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>";
Hope this will help :)