Hello all - I have created an online form that sends results via email on submit, however, I have 4 checkboxes and their values are coming through as NO no matter what is entered
this is the PHP code
if ($box1 == "on"){
$box1= "Yes";
}else{
$box1 = "No";
}
where have I gone wrong?
thanks