I appreciate the help.
But I don't seem to be making things clear, at least from the responses, although I do understand what is being offered.
Let's say I have three fields in the database, Age, Business, Child. (There are 15 or so more choices but this should be enough for our purposes.) I figure each button would enter something into a corresponding field in the database when checked or selected, a "1" or a "0". Let's say they click on the Age button. The button is checked. They might also click on another one, say, Child, and that is checked. But the Business button is not selected or checked.
As I said above, the field Age in the database is tinyint(1). As are the others, Business and Child. From the choices made above by the user, I figure in the field Age in the database there would be a "1", in Business a "0" and in Child a "1." Is this not so from this html code here?
<td valign="top">
<input type="radio" value="Age" name="Age">Age<br>
<input type="radio" value="Business" name="Business">Business<br>
<input type="radio" value="Child" name="Child">Child<br>
[etc. with more radio buttons for the other choices]
</td>
That is what I'm trying to accomplish. But I get only zeros whether the buttons are checked or not.
Al