Ver Mensaje Individual
  #6 (permalink)  
Antiguo 06/06/2007, 09:00
sherryl
 
Fecha de Ingreso: junio-2007
Mensajes: 2
Antigüedad: 16 años, 11 meses
Puntos: 0
Sonrisa Re: Leer XML con php

Hola mleonsoft

Prueba de esta manera ..

<?php
$book = “'<books>'
'<book>'
'<author>'Jack Herrington'</author>'
'<title>'PHP Hacks'</title>'
'<publisher>'O'Reilly'</publisher>'
'</book>'
'<book>'
'<author>'Jack Herrington'</author>'
'<title>'Podcasting Hacks'</title>'
'<publisher>'O'Reilly'</publisher>'
'</book>'
'</books>'”;
$doc = new DOMDocument('1.0', 'iso-8859-1');
$element = $doc->createElement('test', $book );
$doc->appendChild($element);
echo $doc->saveXML();

///luego tu ciclo..el foreach( )
?>