sky Posted January 27, 2007 Share Posted January 27, 2007 Hello, first post.I'm working on a php file that will open an xml file in a DomDocumentthen add to the end (or beginning doesn't matter) a new element.ie...<people> <person> <name>Tom</name> </person> <person> <name>Jill</name> </person></people>then add a <person> Michelle </person> inside <people>It seems to add it to the end of the file.Can somebody help?Here is my php:<?php$dom = new DomDocument;$dom->formatoutput=true;$dom->load("theXML.xml"); $newnode= $dom->createElement('person');$dom->appendChild($newnode);$tnode= $dom->createTextNode("Michelle");$newnode->appendChild($tnode);$dom->save("theXML.xml");// saves the domDocument into a file called "theXML2.xml"?>PLEASE HELP :-\ Link to comment https://forums.phpfreaks.com/topic/35910-append-xml-file-wphp5/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.