I have an XML file that I read using DOM. The file is that:
<database>
<object id="0001">
more elements here
</object>
<object id="0002">
more elements here
</object>
and so on....
</database>
I want to be able to retrieve the element where id=xxxx. And I should also be able to access the elements that are in the object element I found.
can I do that?
thank you