Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/06/2010, 23:02
Avatar de caricatos
caricatos
Moderador
 
Fecha de Ingreso: abril-2002
Ubicación: Torremolinos (Málaga)
Mensajes: 19.607
Antigüedad: 22 años, 1 mes
Puntos: 1284
Respuesta: Generar xml con php

Hola:

Simplemente pon eso con heredoc y la cabecera xml...

<?
header("Content-type: text/xml");
echo <<< heredoc

<?xml version="1.0" encoding="UTF-8"?>
<gallery>
<album lgPath="images/" tnPath="thumb/">
<img src="1.jpg" title="" caption="" />
<img src="1.jpg" title="" caption=""/>
<img src="1.jpg" title="" caption="" />
<img src="1.jpg" title="" caption="" />
<img src="1.jpg" title="" caption="" />
</album>
</gallery>
heredoc;

?>

Saludos
__________________
Por favor:
No hagan preguntas de temas de foros en mensajes privados... no las respondo

Última edición por caricatos; 20/06/2010 a las 23:02 Razón: faltaba el cierre