el codigo es el siguiente:
Código :
<?php $library = new SimpleXMLElement('datos.xml', null, true); $book = $library->addChild('book'); $book->addAttribute('isbn', '0812550706'); $book->addChild('title', "The finished mistery"); $book->addChild('author', 'J. F. Rutherford'); $book->addChild('publisher', 'Watchtower Society'); //header('Content-type: text/xml'); echo $library->asXML(); $library->asXML('library.xml'); ?>
el xml tiene esto grabado:
Código :
<?xml version="1.0" encoding="iso-8859-1"?> <bloque> <noticia> <titulo>Hola Caracola </titulo> <autor>KaoS</autor> <cuerpo>Olla Kaitos a Luisete</cuerpo> </noticia> <noticia> <titulo>Nuevo articulo en desarrolloweb </titulo> <autor>Raul</autor> <cuerpo>Jeje hola, aqui estamos </cuerpo> </noticia> </bloque>
y lo que me devuelve cuando ejecuto "controlar1.php" en el navegador es esto:
Código :
Hola Caracola KaoS Olla Kaitos a Luisete Nuevo articulo en desarrolloweb Raul Jeje hola, aqui estamos J. F. RutherfordWatchtower Society Warning: SimpleXMLElement::asXML() [simplexmlelement.asxml]: SAFE MODE Restriction in effect. The script whose uid is 28735 is not allowed to access /www/uuuq.com/f/e/r/fermmm/htdocs owned by uid 2003 in /www/uuuq.com/f/e/r/fermmm/htdocs/manejar1.php on line 11 Warning: SimpleXMLElement::asXML(library.xml) [simplexmlelement.asxml]: failed to open stream: No such file or directory in /www/uuuq.com/f/e/r/fermmm/htdocs/manejar1.php on line 11
Y nada, despues abro el xml con en navegador y no esta modificado. ¿que puede ser? perdonenme por ser tan noob