CAPTCHA/集成/反验证码/更强
外观
此版本的反验证码更强。
document.write("<input type=hidden name=code value="+Math.random()+" />");
这必须在你的表单中。
在 HTML 表单中使用
<script type="text/javascript">
document.write("<input type=hidden name=code value="+Math.random()+" />");
</script>
使用这个
<?php
if (!$_POST['code']) {
// abort
}
?>
它阻碍了可用性,因为禁用 JavaScript 的用户(例如,出于安全原因)将无法访问你的表单。