lo q quiero es q al insertar una nueva noticia desde flash se coloque en primer lugar del xml. no se si me he explicado bien??
el xml no es de gran importancia en este caso, en resumen lo q quiero es esto:
Código:
mi php contiene esto por ahora, y lo q hace es añadir nuevos registros, xo a continuacion de los ya existentes:<xml> -------<nuevo registro /> <registro 1 /> <registro 2 /> </xml>
Código PHP:
$noticias = new SimpleXMLElement('texto.xml', null, true);
$not = $noticias->addChild('noticia');
$not->addAttribute('id', $Nid);
$not->addAttribute('titulo', $Ntitulo);
$not->addAttribute('fecha', $Nfecha);
$not->addAttribute('contenido', $Ncontenido);
$noticias->asXML('texto.xml');