基本上,我的表单中有一个在 CSS 中设置的输入字段,我display: none
想知道自动填充程序是否填充隐藏字段?我在加载时将该字段的值设置为 time(),并将其与提交表单的时间进行比较,以判断用户是人类还是机器人。
这是我的隐藏字段代码:
<?php
$loadTime = time(); // Initial time that the page loads is checked against the time the form is submitted and if its too fast, its probably a bot
?>
<input type="text" name="loadTime" id="loadTime" value="<?php echo $loadTime ?>" maxlenght="50" />