here's a simple example:
<?xml version="1.0"?>
<list>
<item>
<artist>U2</artist>
<album>The Joshua Tree</album>
</item>
</list>
Now, using domxml, and after traversing through nodes and arriving at <artsist> HOW do I extract the value of artist? What is the dom xml method that will return 'U2'??
The documentation isn't very clear on such a simple thing.