我有以下 PHP 脚本,但它似乎总是在检查会话,因此回显“请在用户输入代码之前输入正确的代码。
我想在代码实际触发之前点击事件并检查会话和表单的发布。如何在 PHP 中做到这一点?
这是我的代码:
<?php
session_start();
if (md5($_POST['norobot']) == $_SESSION['randomnr2'])
{
// here you place code to be executed if the captcha test passes
echo "Code correct - email should send now";
}
else {
// here you place code to be executed if the captcha test fails
echo "Code incorect please try again";
}
?>
我的提交按钮如下所示:
<input type="submit" id="submit_btn" class="button" value="Submit" />