I have created a form where the user has 6 options to each question and is required to 'tick all that apply'. I've used checkboxes (see code below) but Chronoforms is only storing the value of the last checked box, not all that have been ticked.
<tr align="left">
<td width="53" align="center"><input type="checkbox" name="one" value="one"></td>
<td width="497">answer 1 </td>
</tr>
<tr align="left">
<td align="center"><input type="checkbox" name="one" value="two"></td>
<td>answer 2</td>
</tr>
<tr align="left">
<td align="center"><input type="checkbox" name="one" value="three"></td>
<td>answer 3 </td>
</tr>
<tr align="left">
<td align="center"><input type="checkbox" name="one" value="four"></td>
<td>answer 4 </td>
</tr>
<tr align="left">
<td align="center"><input type="checkbox" name="one" value="five"></td>
<td>answer 5 </td>
</tr>
<tr align="left">
<td align="center"><input type="checkbox" name="one" value="six"></td>
<td>answer 6 </td>
</tr>
Can you please let me know where I am going wrong?
Thanks
Laura
<tr align="left">
<td width="53" align="center"><input type="checkbox" name="one" value="one"></td>
<td width="497">answer 1 </td>
</tr>
<tr align="left">
<td align="center"><input type="checkbox" name="one" value="two"></td>
<td>answer 2</td>
</tr>
<tr align="left">
<td align="center"><input type="checkbox" name="one" value="three"></td>
<td>answer 3 </td>
</tr>
<tr align="left">
<td align="center"><input type="checkbox" name="one" value="four"></td>
<td>answer 4 </td>
</tr>
<tr align="left">
<td align="center"><input type="checkbox" name="one" value="five"></td>
<td>answer 5 </td>
</tr>
<tr align="left">
<td align="center"><input type="checkbox" name="one" value="six"></td>
<td>answer 6 </td>
</tr>
Can you please let me know where I am going wrong?
Thanks
Laura