Tema: Generar XML
Ver Mensaje Individual
  #5 (permalink)  
Antiguo 15/12/2009, 12:35
Claugtrs
 
Fecha de Ingreso: febrero-2004
Mensajes: 134
Antigüedad: 20 años, 3 meses
Puntos: 0
Respuesta: Generar XML

Este es el XML que andaba bien

Código HTML:
<opciones>
<op fecha="Foto 1" imagen="img/hard_rock_1.jpg"/>
<op fecha="Foto 2" imagen="img/hard_rock_2.jpg"/>
<op fecha="Foto 3" imagen="img/hard_rock_3.jpg"/>
<op fecha="Foto 4" imagen="img/hard_rock_4.jpg"/>
</opciones> 

Este es el resultado del php

Código HTML:
<opciones><op>
<fecha>Foto 1</fecha>
<imagen>img/hard_rock_1.jpg</imagen>
</op><op>
<fecha>Foto 2</fecha>
<imagen>img/hard_rock_2.jpg</imagen>
</op>

</opciones>