Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problems with Radio buttons 1

Status
Not open for further replies.

FSEdge

Technical User
Joined
May 26, 2001
Messages
63
Location
US
Good all,

Please, would it be possible to ask if anyone would have a look at this form I have posted at:
I am able to choose more than one radio button at the same time. I am not sure why this. Probably a very simple mistake, but I can’t seem to work it out.

Thanks in advance for any help.

FSEdge
 
Simple, all the radio button must have the same name...
You have:

<input type=&quot;radio&quot; name=&quot;6_You_found_us_by&quot; value=&quot;Accident&quot;>
By accident<br>
<input type=&quot;radio&quot; name=&quot;7_You_found_us_by&quot; value=&quot;Forum&quot;>
Forum<br>
<input type=&quot;radio&quot; name=&quot;8_You_found_us_by&quot; value=&quot;Friend&quot;>
Friend<br>
<input type=&quot;radio&quot; name=&quot;9_You_found_us_by&quot; value=&quot;Search Engine&quot;>
Search Engine<br>

But, you need to make it like this:

<input type=&quot;radio&quot; name=&quot;One&quot; value=&quot;Accident&quot;>By accident<br>
<input type=&quot;radio&quot; name=&quot;One&quot; value=&quot;Forum&quot;>Forum<br>
<input type=&quot;radio&quot; name=&quot;One&quot; value=&quot;Friend&quot;>Friend<br>
<input type=&quot;radio&quot; name=&quot;One&quot; value=&quot;Search Engine&quot;>Search Engine<br>
I have not failed; I merely found 100,000 different ways of not succeding...
 
Ah the little stumbling blocks in life.
Thank you GUJUm0deL!!

FSEdge
 
FSEdge,

why not to give a small nice star
star.gif
to GUJUm0deL if his post was helpful?
Good Luck! :-)
 
FSEdge, glad I could help...

EugenePaliev, lol...thanks for the support...:-) I have not failed; I merely found 100,000 different ways of not succeding...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top