Hi,
I have an xml document which looks like
<book>xxxxxxxxxxx</book>
<record>
<field>
<column>Title</column>
<value>HF80</value>
</field>
<field>
<column>page</column>
<value>97</value>
</field>
..... ...
I need to print the "column" heading as a table row. I can get all the records in a table but dont know how to go about this.
The output I need would look like :- tr td Title /td td Page /td /tr
Pointers welcome.. O