Ver Mensaje Individual
  #3 (permalink)  
Antiguo 17/02/2011, 10:19
Avatar de diegojam
diegojam
 
Fecha de Ingreso: febrero-2011
Ubicación: Santiago, Chile, Chile
Mensajes: 23
Antigüedad: 13 años, 2 meses
Puntos: 0
Respuesta: Generar xml con php y mysql

Solucionado...

solo habia que agregar

$nombre = "archivo.xml";
$archivo= fopen($nombre, "w+");
fwrite($archivo, $salida_xml);
fclose($archivo);

y kitar: header("content-disposition: attachment;filename=xmlexport.xml");