if i have a check box on one page in a form, i then submit the form to another php page, how would i validate if the check box was checked or not?
Its passed throught the GET or POST array...
if($_GET['nameofcheckbox'){
//then it's checked...
}
if (isset($checkbox_var))...
if you post, dont forget extract($POST) or $POST['checkbox_var']...