More details? Are you doing something like this:
XML snippet
<Row>
<Field1>Value1</Field1>
<Field2>ValueB</Field2>
</Row>
<Row>
<Field1>Value2</Field1>
<Field2>ValueA</Field2>
</Row>
<Row>
<Field1>Value1</Field1>
<Field2>ValueC</Field2>
</Row>
and you want your html table to look like this:
<table>
<tr>
<td>Value1</td>
<td>ValueB</td>
</tr>
<tr>
<td>Value2</td>
<td>ValueA</td>
</tr>
<tr>
<td>Value1</td>
<td>ValueC</td>
</tr>
<tr>
<td><input type="text" etc.></td>
<td><input type="text" etc.></td>
</tr>
</table>
Obviously, you'd use XSL to create the table header and each row down to the blank row, then create a row of text fields (1 per field) and the end table marker....