I want to store each element in array. Like this link
In this link there are multiple tages like Slider, Latest Headlines, Slider1 etc
There are slider and latest Headlines so in this same key thumbnail and contentId i want to store in separate array.
any one let me know how to parse it
http://bizfy.com/demo/biscoot/response1.php
<contentResponse>
<slider>
<item>
<thumbNail>http://www.bizfy.com/demo/biscoot/a1.png</thumbNail>
<contentId>img001</contentId>
</item>
<item>
<thumbNail>http://www.bizfy.com/demo/biscoot/a1.png</thumbNail>
<contentId>img002</contentId>
</item>
<item>
<thumbNail>http://www.bizfy.com/demo/biscoot/a1.png</thumbNail>
<contentId>img003</contentId>
</item>
<item>
<thumbNail>http://www.bizfy.com/demo/biscoot/a1.png</thumbNail>
<contentId>img004</contentId>
</item>
<item>
<thumbNail>http://www.bizfy.com/demo/biscoot/a1.png</thumbNail>
<contentId>img005</contentId>
</item>
</slider>
<latestHeadlines>
<item>
<thumbNail>http://www.bizfy.com/demo/biscoot/a2.png</thumbNail>
<heading>SRKs Kashmir NOstalgia</heading>
<shortDescription>
Being in Kashmir has made Shah Rukh Khan nostalgic as the superstar's father always wanted him to visit the valley. "My father's one unfulfilled wish was to bring me to Kashmir because his mom was from here.
</shortDescription>
<views>369</views>
<rating>3</rating>
<contentId>news001</contentId>
</item>
<item>
<thumbNail>http://www.bizfy.com/demo/biscoot/a2.png</thumbNail>
<heading>SRKs Kashmir NOstalgia</heading>
<shortDescription>
Being in Kashmir has made Shah Rukh Khan nostalgic as the superstar's father always wanted him to visit the valley. "My father's one unfulfilled wish was to bring me to Kashmir because his mom was from here.
</shortDescription>
<views>369</views>
<rating>3</rating>
<contentId>news001</contentId>
</item>
<item>
<thumbNail>http://www.bizfy.com/demo/biscoot/a2.png</thumbNail>
<heading>SRKs Kashmir NOstalgia</heading>
<shortDescription>
Being in Kashmir has made Shah Rukh Khan nostalgic as the superstar's father always wanted him to visit the valley. "My father's one unfulfilled wish was to bring me to Kashmir because his mom was from here.
</shortDescription>
<views>369</views>
<rating>3</rating>
<contentId>news001</contentId>
</item>
</latestHeadlines>
</contentResponse>
I want to parse this type of xml.
Please suggest me.
Thanks