Let's say I have this XML file
<section name="AAA">
<Item1>FALSE</Item1>
<Item2>FALSE</Item2>
<Item3>FALSE</Item3>
</section>
<section name="BBB">
<Item1>FALSE</Item1>
<Item2>FALSE</Item2>
<Item3>FALSE</Item3>
</section>
Now I want to create an xsl file that will display the data in a table looks like that
AAA BBB
Item1 FALSE FALSE
Item2 FALSE FALSE
Item3 FALSE FALSE
i tried several syntax but none gave me what I want Can I get help here or example ?