I am using this email form:
http://www.freecontactform.com/email_form.php
I am not too savvy with PHP, so can any one help me add check-boxes to this form?
For example, there will be 6 items with check-boxes – if the user clicks 3 then only 3 items will appear in the email sent to me.
I would appreciate any help!
Checkboxes
You should add checkboxes where you want them to be, inside
<form ...> </form>, give them different names, for example, I usedname="checkboxone"for first:You can use your own memorable names:
name="my_very_own_product"Then in PHP code
This way you can check if they are checked:
note: before “// create email headers” you can still edit email sent.
Mail is sent at line 69.
If you need more help just ask for it.