Hello,

I am using Custom items in Media lab --- radio buttons, text boxes, drop down menus, etc---and I am having problems getting the data to save correctly in SPSS when I have multiple questions. It will show the variable name as the column title but then the only data listed under it is the word "ok". I have tried everything to get it to work, I even tried backtracking using the "multiple radio buttons" test file on this site.

Here is the code I use for one of my questions with the variable name "relig":

<form method="post">
<tr>
<td>Do you consider yourself to be a member of a particular religion, such as Christianity (Orthodox, Catholic, or Protestant), Judaism, Buddhism, Hinduism, or Islam?</td>
<br>
<td align="center"><input type=radio name="<ml.varname>_01" value="1" class="radio">Yes</td>
<td align="center"><input type=radio name="<ml.varname>_01" value="2" class="radio">No</td>
<br>
</tr>
</form>
<form method="post">
If so, which religion?
<input name="relig2">
<input type="submit" value="Continue"">
</form>


Help me please! Thank you!