vote up -1 vote down star

A very basic question...

How can I only allow the selection of one option in a list of radio buttons?

<form action="process_repair.php" method="POST">
 <label for "repair_complete">Repair complete</label>
  <input type="radio" name="Yes" value="true">
  <input type="radio" name="No" value="false">
</form>

When this code runs, it's possible to select both radio buttons, but I'd like them to interact so you can only select one or the other.

Any help much appreciated! :)

flag

1 Answer

vote up 5 vote down check

Give them the same name.

<form action="process_repair.php" method="POST">
 Repair complete
 <input type="radio" name="complete" value="true" id="complete_yes" />
 <label for="complete_yes">Yes</label>
 <input type="radio" name="complete" value="false" id="complete_no" />
 <label for="complete_no">No</label>
</form>

Labels must have a for attribute, directing to the corresponding input's id.

link|flag
3  
You can also just do <label><input ...> Label text</label>. – Paul Fisher Jun 13 at 17:03
Do note that the implicit linking (comment above) is deprecated as of XHTML 1.1(?). – antennen Jun 13 at 17:20
@antennen I can't see any mention of that in the XHTML 1.1 spec, but implicit labeling doesn't enjoy as wide support as with the for attribute. – David Dorward Jun 15 at 13:24
It is also worth pointing out (given the question) that the "select one radio in a group" is a function of HTML, not PHP. You just need to assign them all to the same group (by giving them the same name). – David Dorward Jun 15 at 13:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.