Hi people,
I am having problems retrieving information from the following XML:
<?xml version="1.0" encoding="iso-8859-1"?>
<node>
<subnode id="1">
<title>subnode
<bodytext>Stuff about subnode</bodytext>
</title>
</subnode>
<subnode id="2">
<title>subnode
<bodytext>Stuff about subnode2</bodytext>
</title>
</subnode>
</node>
I can work out how to load the xml into an array and access <node> and
<title> easily enough, but I cannot work out how to get the value stored in
<bodytext>
If anyone has the answer to this my sanity may stay in tact a little longer!