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.
Could you provide an example on how to source the xml file, then read the following:
<parent>
<child>
<grandchild>Example Text 1</grandchild>
</child>
<child>
<grandchild>Example Text 2</grandchild>
</child>
</parent>
Thanks!