Hello,
Does anyone knows how I can check if a checkbox is selected on a form, if so, set the value of the check box to a variable else display something else i.e see the code below, its not workin
<?Php
if ($janetjackson !== 'checked')
echo("the box is NOT checked");
elseif ($janetjackson == 'checked')
echo("the box is checked");
?>
Much appreciated. thank you