If you give all of the radios the same name, it will only let the user select one radio. 
For example:
HTML Code:
<input type="radio" name="food1" value="food1" /> Corn<br />
<input type="radio" name="food2" value="food2" /> Pizza<br />
<input type="radio" name="food3" value="food3" /> Steak<br />
You can select more then one. But with:
HTML Code:
<input type="radio" name="food" value="food1" /> Corn<br />
<input type="radio" name="food" value="food2" /> Pizza<br />
<input type="radio" name="food" value="food3" /> Steak<br />
You can only select one.
Bookmarks