vienem Posted January 19, 2010 Share Posted January 19, 2010 Hey there, Im new to the forum and PHP/XML - Been working on a script that I have no problems with until now. It is probably a simple noob issue & I just know If anyone can help, they would be here ^^. So here is the issue; I am Parsing data from and XML file BUT the XML file tree contains multiple strings with the same name; Example:- <Movie> <Movie_Name> </Movie_Name> </Movie> <Movie> <Movie_Name> </Movie_Name> </Movie> As you can see if I call this in Php like so:- echo $movie->Movie_Name; It works perfectly but for only the very first Movie, How would I load the second lot of <Movie> in the tree? I tried something called foreach and it kinda changes something lol but as I said Im rather new. Quote Link to comment https://forums.phpfreaks.com/topic/189094-php-and-xml-help-please/ Share on other sites More sharing options...
MadTechie Posted January 19, 2010 Share Posted January 19, 2010 Your need to loop the thought the elements or extract it like an arrary I think an example would help. <?php $xmlstr = <<<XML <XML> <Movie> <Movie_Name>Movie 1</Movie_Name> </Movie> <Movie> <Movie_Name>Movie 2</Movie_Name> </Movie> </XML> XML; $xml = simplexml_load_string($xmlstr); $movie = $xml->Movie; echo "MOVIE ONE is:".$movie->Movie_Name; echo "<HR />"; //array starts at 0 so this is item 2 echo "MOVIE TWO is:".$movie[1]->Movie_Name; echo "<HR />"; //Looping (okay the movie to movieS seams weird but i wanted to keep your variable the same!!) //remember $movie is $xml->Movie foreach ($movie as $movies) { echo $movies->Movie_Name, '<br />'; } EDIT: added comment to loop Quote Link to comment https://forums.phpfreaks.com/topic/189094-php-and-xml-help-please/#findComment-998325 Share on other sites More sharing options...
vienem Posted January 20, 2010 Author Share Posted January 20, 2010 YOU ARE A GOD! Thank you so much for the fast reply and solution! I know it was so simple to resolve but has done me a great favor indeed. Once again thank you MadTechie! Quote Link to comment https://forums.phpfreaks.com/topic/189094-php-and-xml-help-please/#findComment-998348 Share on other sites More sharing options...
MadTechie Posted January 20, 2010 Share Posted January 20, 2010 Your very welcome, and welcome to PHP Freaks Quote Link to comment https://forums.phpfreaks.com/topic/189094-php-and-xml-help-please/#findComment-998352 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.