Con DOM seria algo asi:
Código PHP:
Ver originaltry {
$dom = new DOMDocument();
$dom->load('simple.xml');
$node = $dom->createElement('noticia');
$node->setAttribute('id', $Nid);
$node->setAttribute('titulo', $Ntitulo);
$node->setAttribute('fecha', $Nfecha);
$node->setAttribute('contenido', $Ncontenido);
$xpath = new DOMXPath($dom);
$first = $xpath->query('//noticia[1]')->item(0);
if(null === $first) {
$dom->documentElement->appendChild($node);
} else {
$first->parentNode->insertBefore($node, $first);
}
$dom->save('simple.xml');
} catch(Exception $e) {
//handle exception
}
Salu2.