Can somebody tell me how to parse information from XML to array. So I have an XML that looks like this:
<name>
<gps>coordinate1</gps>
<gps>coordinate2</gps>
...
</name>
...
So I would like to pull out the value of the name tag, put it into a variable, and then pull out the value of the gps tag, basically the coordinates and store them into an array.