我对 PHP 很陌生(我更偏爱 Ruby),但我公司的网站有一个电子邮件表单,客户可以填写该表单以订购样品。我收到的垃圾邮件主要来自@yahoo 域。是否有一段代码可以插入到我的 formmailer.php 文件中,以防止雅虎的人们将某些内容提交到表单中?
感谢您的任何建议!
更新:
<form action="formmailer.php" method="post" id="contact" style="margin-bottom: 0;" onsubmit="return math_check()">
和使用的脚本
<script type="text/javascript">
function math_check(){
var nr = document.getElementById("math_check").value;
if (nr != 7) {return false;}
else {return true;}
}
</script>
我必须去做一些研究,这样我才能有一个更好的未来计划。感谢你的帮助。