Hello,
I have a form with a checkbox:
<input name="Conformidad" type="checkbox" id="Conformidad" value="si">
When I insert the form data in MySql with PHP, always see in the field "Conformidad" of the table the valor N.
I want that if the checkbox is checked the field "Conformidad" = si and if the checkbox is no checked the field "Conformidad" = no.
What can I do?