我有一个 php 表单,我需要提交 4 个字段数据。
- 姓名
- 电子邮件
- 密码
- 移动的
现在我必须检查上述所有数据是否可用。
出于调试目的,我在下面使用 $_GET
if (!empty($_GET['name']) or !empty($_GET['email']) or !empty($_GET['password']) or !empty($_GET['mobile'])) {
$response = array(
'status' => 'OK',
'error' => '1',
'message' => 'Registered successfully. Please check your email for activation details',
'data' => '');
} else {
$response = array(
'status' => 'NOK',
'error' => '1',
'message' => 'There was some error please try again.',
'data' => '');
}
以上无法正确验证表单。