Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/04/2009, 09:15
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 7 meses
Puntos: 2135
Respuesta: Crear un archivo XML

Si te dice false es que tuvo un problema al hacer el llamado al WebService.

Por otro lado crear un XML es sencillo, solamente lo imprimes:
Código php:
Ver original
  1. <?php
  2. header( "Content-type: text/xml" );
  3. ?>
  4. <?xml version="1.0" encoding="UTF-8"?>
  5. <tests>
  6.        <test><?php echo $algo; ?></test>
  7. </tests>

Saludos.