How to read/display XML using PHP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T16:18:04Z http://stackoverflow.com/feeds/question/1081627 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081627/how-to-read-display-xml-using-php 1 How to read/display XML using PHP Michal Kopanski 2009-07-04T06:07:35Z 2009-07-04T06:11:37Z <p>Is there a way to read off from an [external] xml (an xml file from a different website) using PHP? I know there's a way to read XML using JavaScript, but only if they are both in the same root.</p> <p>Could you provide an example on how to source the xml file, then read the following:</p> <pre><code>&lt;parent&gt; &lt;child&gt; &lt;grandchild&gt;Example Text 1&lt;/grandchild&gt; &lt;/child&gt; &lt;child&gt; &lt;grandchild&gt;Example Text 2&lt;/grandchild&gt; &lt;/child&gt; &lt;/parent&gt; </code></pre> <p>Thanks!</p> http://stackoverflow.com/questions/1081627/how-to-read-display-xml-using-php/1081629#1081629 1 Answer by David Dorward for How to read/display XML using PHP David Dorward 2009-07-04T06:09:49Z 2009-07-04T06:09:49Z <p>Use <a href="http://php.net/fopen" rel="nofollow">fopen</a> to read files over http and take your pick of <a href="http://uk.php.net/manual/en/refs.xml.php" rel="nofollow">the approaches to read XML</a>.</p> http://stackoverflow.com/questions/1081627/how-to-read-display-xml-using-php/1081632#1081632 5 Answer by gahooa for How to read/display XML using PHP gahooa 2009-07-04T06:11:37Z 2009-07-04T06:11:37Z <p>The SimpleXML extension provides a very simple and easily usable toolset to convert XML to an object that can be processed with normal property selectors and array iterators.</p> <p><a href="http://us2.php.net/manual/en/simplexml.examples-basic.php" rel="nofollow">http://us2.php.net/manual/en/simplexml.examples-basic.php</a></p>