Как фунцией DOM добавить узел?

Geenetix

Guest
Как фунцией DOM добавить узел?

КАК добавить message?
------------------------------example.xml
<?xml version="1.0" ?>
<!--message01-->
<note>
<message ID="m1" from="Flack fregat">We have enemy contact</message>
<message ID="m2" from="Collector">Resource collector waiting orders</message>
<message ID="m3" from="Korvet">Enemy netrolized</message>
</note>
------------------------------add.php

<?php

if(!$dom = domxml_open_file("example.xml")) {
echo "Error while parsing the document\n";
exit;
}

$root = $dom->document_element();
?>

Кстате, тут почему-то выводит Error while parsing the document
 
Сверху