Hi
Could any one give example of how to create table s in XML ?
Clarification appreciated.
Could any one give example of how to create table s in XML ?
Clarification appreciated.
<?xml version="1.0" encoding="iso-8859-1" ?>
<table>
<row>
<cell/>
<cell>cell content</cell>
</row>
<row>
<cell>cell content</cell>
<cell>cell content</cell>
</row>
</table>
Comment