HTML table help

Mookow

Lifer
Apr 24, 2001
10,162
0
0
OK, I've got a dumb school programming lab. I have the substance of the lab done correctly. The final product is supposed to be in a HTML table in an HTML file it outputs to. I have the file set up correctly, and they gave me the code to the table already, but my question is: what are the tags in HTML to tab over to the next field in a table, and the tag to start a new line in the table?

This lab has been stupid from being to end, and I dont want to have to continue to look over HTML source until I figure it out. Unless you know of a site that has a uncluttered table in it that you can access the source code to (I've already looked around, I thought overclockers.com would, but you cant view the source to their overclocking DB table), in which case I'd be more than happy to just be given a link.

TIA
 

Ns1

No Lifer
Jun 17, 2001
55,420
1,600
126
you have to create the whole table using html and just fill in the ones you want filled and leave the ones yo udont' blank

ie a 2x2 table would be

<table>
<tr>
<td>
</td>
<td>
</td>
</tr>
//end row 1
<tr>
<td>
</td>
<td>
</td>
</tr>
//end row 2
</table>

After you create the table just fill in whatever cells you want and stuff

 

Mookow

Lifer
Apr 24, 2001
10,162
0
0
My thanks to you, NeuroSynapsis. I would have given you a 10, but you have ratings turned off.

Even though I had gotten it all done from the info in NeuroSynapsis's post, I did give you 10, Rakkis, because you took to time to answer it as well, and in a different way (better than some people who almost quote the previous posts). Anyway, thank you too, Rakkis.