I'm relatively green
-)) with HTML and need some help. I'm not exactly sure what the difference between a check box and radio button is (other then cosmetic). So, I am trying to set up a table that contains (among other things) three mutually exclusive checkboxes (for asthetic reasons) instead of radio buttons. I want to pass the value of the boxed checked in a 'POST'.
Assume the name of each box is row1_bx1, row1_bx2 and row1_bx3, etc. How do I set it up so each rowN set of boxes are mutually exclusive and a single identifier (row1_bxvalue) contains 1,2 or 3, depending on which of the 3 boxes is checked?
what else?>
and here>
here too>
Thanks.
Assume the name of each box is row1_bx1, row1_bx2 and row1_bx3, etc. How do I set it up so each rowN set of boxes are mutually exclusive and a single identifier (row1_bxvalue) contains 1,2 or 3, depending on which of the 3 boxes is checked?
Code:
<tr>
.
.
.
<td width="58"><INPUT type=checkbox name=row1_bx1 value=1
Code:
</td>
<td width="58">INPUT type=checkbox name=row1_bx2 value=2
Code:
</td>
<td width="58">INPUT type=checkbox name=row1_bx3 value=3
Code:
</td>
.
.
.
</tr>
Thanks.