if you're asking how to make a table, you can use this example:
<table border=1>
<tr><!--new row1 -->
<td>hi i am in row1, colunm1<td><!--new column-->
<td>hi i am in row1, colunm2</td><!--new column-->
</tr><!--end row1 -->
<tr><!--new row2 -->
<td>hi i am in row2, colunm1<td> <!--new column -->
<td>hi i am in row1, colunm2</td><!--new column-->
</tr><!--end row2 -->
</table>
if you're asking how to edit the values in the table, you can give the cells an id like so (IE4+ || NS6 only):
<td id="luc">hi i am in row2, colunm1<td>
luc.innerHTML="some text or html"
jared@aauser.com