【发布时间】:2013-05-14 20:45:47
【问题描述】:
我正在为 PHP 中的表单验证编写代码,但我遇到了复选框验证的问题。 浏览表单时,如果您不选中复选框,它将给出正确的错误消息。
但是,即使您选中该复选框,它仍然会给出相同的错误消息。
这是目前为止的代码:
if (isset($_POST['firstname'], $_POST['lastname'], $_POST['address'], $_POST['email'], $_POST['password'])) {
$errors = array();
$firstname = $_POST['firstname'];
$lastname = $_POST['lastname'];
$address = $_POST['address'];
$email = $_POST['email'];
$password = $_POST['password'];
if (empty($firstname)) {
$errors[] = 'First name can\'t be empty';
}
if (empty($lastname)) {
$errors[] = 'Last name can\'t be empty';
}
if (empty($address)) {
$errors[] = 'Address can\'t be empty';
}
if (filter_var($email, FILTER_VALIDATE_EMAIL) === FALSE) {
$errors[] = 'Please enter a valid email';
}
if (empty($password)) {
$errors[] = 'Password can\'t be empty';
}
}
if (!isset($checkbox)) {
$errors[] = 'Please agree to the privacy policy';
}
$sex = $_POST['sex'];
$age = $_POST['age'];
$checkbox = $_POST['checkbox'];
$_SESSION['validerrors'] = $errors;
$_SESSION['firstname'] = $firstname;
$_SESSION['lastname'] = $lastname;
$_SESSION['address'] = $address;
$_SESSION['email'] = $email;
$_SESSION['sex'] = $sex;
$_SESSION['age'] = $age;
$_SESSION['password'] = $password;
$_SESSION['checkbox'] = $checkbox;
if (!empty($errors)) {
header('Location: index.php');
} else {
header('Location: writevalues.php');
}
上述代码中的所有其他内容都运行良好,但我无法找到任何有关复选框验证情况的有用答案。提前致谢!
【问题讨论】:
-
您在分配之前检查
$checkbox是否未设置 -
在 ALL 标头位置之后添加
exit();。 (您可能还想在index.php末尾取消设置$_SESSION['validerrors'],否则另一个页面也可能显示这些错误!) -
感谢您的帮助! @Waygood - 将所有内容添加到此页面和其他页面中,谢谢!
标签: php validation checkbox