Is there a way to check of a checkbox is unchecked with php? I know you can do a hidden field type in html but what about with just php when the form is submitted? I tried b
$checkedfeild = @$_POST["yourfeildname"]; if(isset($checkedfeild)) { //Code here } else { echo"Not checked"; }