I'm loading an XML file in Flash, I modify it and then I send it to a php script that writes it in the same XML file.
The problem is that Flash writes the "\" character before every ' " '. And the file becomes invalid (cannot be shown in browser).
Is there a way to tell flash not to use the eschape character and annoy me?
Here's the php code, if needed:
PHP Code:
<?php
$mesaj="";
$mesaj .= $myxml;
//myxml is a string variable that's been sent from flash
$f = fopen("file.xml", "w");
fputs($f, $mesaj);
fclose($f);
?>