hi,
I hv an XML tree with some elements which keep repeating.. As of now, I am able to print only the last element..
I need to make the loop recursive in order to print all the elements..
wud appreciate any help..
TIA,
sands
like this:
<app_info>
<app_id>001</app_id>
<app_name>WORD</app_name>
<app_info>
<app_id>002</app_id>
<app_name>excel</app_name>
</app_info>
<app_info>
<app_id>003</app_id>
<app_name>PPt</app_name>
</app_info>
</app_info>
<app_info>
<app_id>004</app_id>
<app_name>ZIP</app_name>
</app_info>