Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am creating an HTML form with some radio button options. I'd like to have one option as "Other - please specify" and allow the user to type something in.

Two questions:

1) How can I make a "hybrid" input type of radio/text?

2) On the PHP back end, if the input has the same name attribute as the radio inputs, will the user's input be part of the same array?

share|improve this question
What type of form? HTML? – Jim Anderson Jan 2 '09 at 16:11
Yes - sorry I didn't specify. – Nathan Long Jan 2 '09 at 16:13

3 Answers

up vote 6 down vote accepted

#1: To the "other:" radio field, add a <input type="text" ...> with style display:none and only display it when user selects the "other:" radio field.

However, I'm not entirely sure if #2 would work. You'd get rboption=other from the radio button AND rboption=some%20text from the text field. One will usually overwrite the other, but it's not sure which (read: depends on position in page, browser and phase of the moon).
To be sure, make the textfield name different and only process it when rboption == 'other' (like Salty said)

share|improve this answer
Cool. I will make the optional text field appear with Javascript, so to make sure it degrades gracefully, I think I will have it display by default and hide it with Javascript unless it's needed. – Nathan Long Jan 2 '09 at 18:28

Why not just add a different name attribute to the input and only validate it if the other radio button has been selected?

share|improve this answer

Here's how I did it:

<input type="radio" name="phone" value="313-375-2151">Taylor <br>
<input type="radio" name="phone" value="555-444-1234">OverheadHts <br>
<input type="radio" name="phone" value="555-333-1234">Smith Ctr <br>
<input type="radio" name="phone" value="444-344-1234">Mainsville<br>
<input type="radio" name="phone" value="other">Other:
    <input type="text" name="phone-other" size="14">

And then when you process the form:

$phone = mysql_real_escape_string($_POST['phone']);
if ($phone =='other'){
  $phone = mysql_real_escape_string($_POST['phone-other']);
}

etc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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