I have an XML file which looks like this
<data>
<value>33</value>
</data>
Im trying to parse it but Im not sure how because every single tutorial on the web I have seen so far tells you how to do it with an XML element which looks like this:
<value id="somestupididhere"></value>
I want to do it without the "id=" bit. How do I allocate the value of a tag without having to add an id to it?