What's the proper code for a radio question in the form template? I added a dropdown and radio question to my form. I copied the code and used it for both but I know the radio code is wrong.
Code:
<tr>
<td class="alt2" valign="middle" colspan="2">
<select name="dropdownanswer7">
<option value="$dropdownchoice7a" <if condition="$dropdownchoice7a == $dropdownanswer7">selected="selected"</if>>$dropdownchoice7a</option>
<option value="$dropdownchoice7b" <if condition="$dropdownchoice7b == $dropdownanswer7">selected="selected"</if>>$dropdownchoice7b</option>
</select></td>
</tr>
<tr>
<td class="alt1" valign="middle" colspan="2">
<select name="radioanswer4">
<option value="$radiochoice4a" <if condition="$radiochoice4a == $radioanswer4">selected="selected"</if>>$radiochoice4a</option>
<option value="$radiochoice4b" <if condition="$radiochoice4b == $radioanswer4">selected="selected"</if>>$radiochoice4b</option>
</select></td>
</tr>