0
A while ago I did that question, and those days I wondered if I could not use XML for structures, for example, with a table,:
XML:
<root>
<row>
<col>col 1</col>
<col>col 2</col>
<col>col 3</col>
<col>col 4</col>
</row>
<row>
<col>col 1</col>
<col>col 2</col>
<col>col 3</col>
<col>col 4</col>
</row>
</root>
HTML:
<table>
<tr>
<td>col 1</td>
<td>col 2</td>
<td>col 3</td>
<td>col 4</td>
</row>
<tr>
<td>col 1</td>
<td>col 2</td>
<td>col 3</td>
<td>col 4</td>
</tr>
</table>
- It is possible to do this ?
- If yes, how?
NOTE: There is no context to insert this, it’s just curiosity.