Hello everyone,
I would like to simply take an XML file and store the tags and values
in a structure or array. I'm getting lost in the documentation with
all the references to objects etc. The XML file might look something
like this...
<header>
<time>
<hour>12</hour>
<minute>3</minute>
</time>
<status>1</status>
<complete>0</complete>
</header>
At this point, it seems easier to write my own parser! Thanks for the
help in advance.