Hi all,
i have the XML like this:
<Root>
<MainHeading>TESTING XSLT</MainHeading>
<boby>
<id>1</id>
<heading>Name</heading>
<detail>This is name of user</detail>
</body>
<boby>
<id>2</id>
<heading>Address</heading>
<detail>This is address of user</detail>
</body>
<boby>
<id>3</id>
<heading>Phones</heading>
<detail>
<inner>Home </inner>
<inner>Office</inner>
<inner>Personnel</inner>
</detail>
</body>
</Root>
how can i write XSLT for this xml to that in the following manner
TESTING XSLT
Name
Address
Phones
Please show me the way, To get the solution whether
i have to change the xml or not.?