Using PHP, how do I get an entire subset of nodes from an XML document? I can retrieve something like:
You could use DOMDocument.GetElementsByTagName or you could:
Use XPath?
xpath("//certain"); print_r($result); ?>