Hi,
I'm a php noob, I'm having a problem selecting two seperate questions for an online application I'm editing. My company asked me to add another question to the form and I just copied the above one and changed the text.
It's two questions with a yes and no answer with a button to click. If I click the yes or no button for the first question it selects it but when I answer yes or no to the second question it takes away the first questions answer and only puts in the second questions yes or no.
Obviously I want both questions to be able to be clicked and answered but only one at a time are sticking.
Here is the code below
</table>
<img src="images/dot.gif" width="10" height="10">
<table width="99%" border="0" cellspacing="0" cellpadding="3" align="center">
<tr>
<td align="left">
<span class="fields1">1) Can you operate a vehicle with a manual transmission?</span>
<input type="radio" name="f200" value="Yes"> Yes
<input type="radio" name="f200" value="No"> No
<p>
<p>
<td align="left">
<span class="fields1">2) Are you currently able to perform the essential duties of the position for which you applied for during the available hours identified above?</span>
<input type="radio" name="f200" value="Yes"> Yes
<input type="radio" name="f200" value="No"> No
</td>
</tr>
</table>
Any Help Appreciated,
Thanks