Multiple Sets of Radio Buttons

  • Thread starter Thread starter wwcp
  • Start date Start date
W

wwcp

Is there a way of having multiple sets of Radio Buttons in the same Form? I
have several lines of "single answer only" questions, but FP treats all the
Radio Buttons as one question. Thanks so much for your help in advance..
(This has been a very helpful Group.)

Palmer
 
Don't worry about it.... I put on a different set of glasses and forced
myself to read the Help section - a little closer... Groups was the
answer... Sorry about posting too quickly.

Palmer
 
you have to name each "set" of buttons with the same name

eg

<input type=radio name="radio1" value="option1">
<input type=radio name="radio1" value="option2">
<input type=radio name="radio1" value="option3">
<input type=radio name="radio1" value="option4">
<input type=radio name="radio1" value="option5">

<input type=radio name="radio2" value="option1">
<input type=radio name="radio2" value="option2">
<input type=radio name="radio2" value="option3">
<input type=radio name="radio2" value="option4">
 
Back
Top