madcrazy1 Posted September 14, 2011 Share Posted September 14, 2011 this is what i have so far: $var=$_POST["fname"]; $xmlDoc = new DOMDocument(); $xmlDoc->loadXML($var); I would like to use something similar to this included in it before sql insert: for($c = 0; $c<$node->length; $c++) { 1 root, 4 parents and varying childs I believe? <node> <building>Number 65</building> <workers><label>executive</label><names>john</names><label>cook</label><names>terry</names><label>waitress</label><names>jill</names><label>buser</label><names>4564646</names><label>Main</label><number>45564646</number><label>home fax</label><number>45964646</number></workers> <food><label>breakfast</label><meal>eggs</meal><label>lunch</label><meal>turkey</meal><label>dinner</label><meal>steak</meal></food> <addresses><label>Home</label><Country>usa</Country><Street>123 mulberry ln </Street><ZIP>57888</ZIP><City>teledo</City><State>Ohio</State><label>location</label><Street>turnpike east 23</Street><City>danbury</City><State>Connecticut</State><Country>USA</Country></addresses> <building>Number 66</building> etc... </node> Thank you! Link to comment https://forums.phpfreaks.com/topic/247150-need-to-read-this-xml-in-php-please/ Share on other sites More sharing options...
RichardRotterdam Posted September 14, 2011 Share Posted September 14, 2011 why not use simpleXml? It's a lot easier looping through the elements you want that way Link to comment https://forums.phpfreaks.com/topic/247150-need-to-read-this-xml-in-php-please/#findComment-1269352 Share on other sites More sharing options...
madcrazy1 Posted September 14, 2011 Author Share Posted September 14, 2011 I'm open to that Link to comment https://forums.phpfreaks.com/topic/247150-need-to-read-this-xml-in-php-please/#findComment-1269354 Share on other sites More sharing options...
RichardRotterdam Posted September 14, 2011 Share Posted September 14, 2011 Read up on this one it pretty much describes exactly what you need: Handling XML data Link to comment https://forums.phpfreaks.com/topic/247150-need-to-read-this-xml-in-php-please/#findComment-1269356 Share on other sites More sharing options...
madcrazy1 Posted September 14, 2011 Author Share Posted September 14, 2011 Thanks, I read it but I could'nt see where it fit my situation, I am a complete idiot when it comes to real xml especially with multiple parents. I actually need someone to write it out for me Link to comment https://forums.phpfreaks.com/topic/247150-need-to-read-this-xml-in-php-please/#findComment-1269359 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.