How is it possible to get to a specific item in xml?
For example here is my xml data and I would like to get the value of the <id></id> of the last element. In this case it is 7:
Thanks

<user>
<id>6</id>
<firstname>jay</firstname>
<surname>wigmore</surname>
<age>28</age>
<phone>876543</phone>
<email>[email protected]</email>
</user>
<user>
<id>7</id>
<firstname>john</firstname>
<surname>jackson</surname>
<age>32</age>
<phone>1234 567</phone>
<email>[email protected]</email>
</user>