我正在检查以确保所有传入$_POST
的值都不为空。使用 isEmpty 是最好的方法。这是 db 条目之前的第二次检查,我已经在使用 jquery 表单验证
if (!isEmpty($_POST['add']) || ($_POST['add']['type'] == 2 && !isEmpty($_POST['cpl']))):
// insert into db
else:
header("Location: /?req=register");
exit();
endif;