Sep 25th, 2011, 2:31 PM
Hi everyone,
I am coding up a survey and I need to record the option that the user will choose when they do the survey.
All my questions have this form
<form action="path/formtools/process.php" method="post">
<input type="radio" name="course" value="biochem" /> Biochemistry<br />
<input type="radio" name="course" value="bio" /> Biology<br />
<input type="radio" name="course" value="chem" /> Chemistry<br />
<input type="radio" name="course" value="math" /> Mathematics<br />
<input type="radio" name="course" value="phy" /> Physics<br />
<input type="radio" name="course" value="JMC" /> JMC
</form>
and the submit button has this form:
<form action="path/formtools/process.php" method="post">
<input type="submit" value="Submit" />
<input type="hidden" name="form_tools_form_id" value="x" />
Am I missing something obvious? Basically when I go to the view option, to see who completed the survey I can't see the option they chose. I set up the Option lists so now if I enter a submission I can add the values myself but that's a bit useless.
Can anyone please help me? This should be something quite straightforward but I can't seem to be able to find the answer. Thanks.
I am coding up a survey and I need to record the option that the user will choose when they do the survey.
All my questions have this form
<form action="path/formtools/process.php" method="post">
<input type="radio" name="course" value="biochem" /> Biochemistry<br />
<input type="radio" name="course" value="bio" /> Biology<br />
<input type="radio" name="course" value="chem" /> Chemistry<br />
<input type="radio" name="course" value="math" /> Mathematics<br />
<input type="radio" name="course" value="phy" /> Physics<br />
<input type="radio" name="course" value="JMC" /> JMC
</form>
and the submit button has this form:
<form action="path/formtools/process.php" method="post">
<input type="submit" value="Submit" />
<input type="hidden" name="form_tools_form_id" value="x" />
Am I missing something obvious? Basically when I go to the view option, to see who completed the survey I can't see the option they chose. I set up the Option lists so now if I enter a submission I can add the values myself but that's a bit useless.
Can anyone please help me? This should be something quite straightforward but I can't seem to be able to find the answer. Thanks.