Tema: Flex 3 y PHP
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 21/07/2009, 18:28
eSSeneX
 
Fecha de Ingreso: mayo-2008
Ubicación: Murcia, España
Mensajes: 313
Antigüedad: 16 años, 6 meses
Puntos: 5
Flex 3 y PHP

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 original
  1. var ur:URLRequest = new URLRequest("../php/save_noticia_xml.php");
  2. //ur.contentType = "text/xml";
  3.            
  4. var uv:URLVariables = new URLVariables();
  5. uv.contentEs = xmlItems[0].toString();
  6. uv.contentEn = xmlItems[1].toString();
  7. uv.contentPt = xmlItems[2].toString();
  8.            
  9. ur.data = uv;
  10.            
  11. ur.method = "POST";
  12.            
  13. //trace(uv.contentEs);
  14.            
  15. 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é?