hello,
I was wondering if somebody could help me out. I have a table, and I am going to be entering data into it. I would like for none of the data to show if the table is not complete and for the data to show if the table is complete. Could anybody give me a hand with this?
Thanks in advance
I was wondering if somebody could help me out. I have a table, and I am going to be entering data into it. I would like for none of the data to show if the table is not complete and for the data to show if the table is complete. Could anybody give me a hand with this?
Thanks in advance
Code:
<table width="200" border="1">
<tr>
<td>ID</td>
<td>Record</td>
</tr>
<tr>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>2</td>
<td> </td>
</tr>
<tr>
<td>3</td>
<td> </td>
</tr>
<tr>
<td>4</td>
<td> </td>
</tr>
</table>