How to read/display XML using PHP - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T16:18:04Zhttp://stackoverflow.com/feeds/question/1081627http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081627/how-to-read-display-xml-using-php1How to read/display XML using PHPMichal Kopanski2009-07-04T06:07:35Z2009-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><parent>
<child>
<grandchild>Example Text 1</grandchild>
</child>
<child>
<grandchild>Example Text 2</grandchild>
</child>
</parent>
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/1081627/how-to-read-display-xml-using-php/1081629#10816291Answer by David Dorward for How to read/display XML using PHPDavid Dorward2009-07-04T06:09:49Z2009-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#10816325Answer by gahooa for How to read/display XML using PHPgahooa2009-07-04T06:11:37Z2009-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>