|
Hi,
i have a form on my website, and on one section i have a list of checkboxes. Visiters can choose one or multiple selections, however when i get the email, i only get the last selection:
ie: checkbox 1= 1, checkbox 2=2, checkbox 3=3. When i select all three, i get in the email only checkbox 3.
<td>
<input type="checkbox" name="size" value="0" /> studio/bachelor
<input type="checkbox" name="size" value="1" /> 1
<input type="checkbox" name="size" value="2" /> 2
<input type="checkbox" name="size" value="3" /> 3
</td>
Any idea?
|