Buenas, os comento.
Estoy intentando enviar contenido XML a un script en php que se encargará de guardarlo. Este es el código:
Código actionscript:
Ver originalvar ur:URLRequest = new URLRequest("../php/save_noticia_xml.php");
//ur.contentType = "text/xml";
var uv:URLVariables = new URLVariables();
uv.contentEs = xmlItems[0].toString();
uv.contentEn = xmlItems[1].toString();
uv.contentPt = xmlItems[2].toString();
ur.data = uv;
ur.method = "POST";
//trace(uv.contentEs);
var ul:URLLoader = new URLLoader(ur);
Funciona perfectamente, pero cuando abro los ficheros que el php me ha generado, me encuentro esto:
Código HTML:
<noticia id=\"1\" titulo=\"Mayo 2007\"...
en lugar de esto:
Código HTML:
<noticia id="1" titulo="Mayo 2007"
Alguien sabe por qué?