M
Marco
Hi, I've got an XML file containing some data.
For example, a list of friends:
<friend>
<name>XXX</name>
<surname>YYY</surname>
</friend>
<friend>
<name>KKK</name>
<surname>ZZZ</surname>
</friend>
....and so on.
I want to create an XSL file to transform the XML into a HTML table.
I'm able to generate one row per friend (every <friend> inside a <tr>
element).
But how can I put more than one friend per row?
Something like that:
<tr>
<td>XXX YYY</td>
<td>KKK ZZZ</td>
</tr>
Is it possible?
Bye
Marco
For example, a list of friends:
<friend>
<name>XXX</name>
<surname>YYY</surname>
</friend>
<friend>
<name>KKK</name>
<surname>ZZZ</surname>
</friend>
....and so on.
I want to create an XSL file to transform the XML into a HTML table.
I'm able to generate one row per friend (every <friend> inside a <tr>
element).
But how can I put more than one friend per row?
Something like that:
<tr>
<td>XXX YYY</td>
<td>KKK ZZZ</td>
</tr>
Is it possible?
Bye
Marco