我想要像一个反垃圾邮件系统,我有这个HTML:PHP rand()函数
What is <?php echo $six; ?> + <?php echo $rand1; ?> <input type="text" name="human" id="human">
而对于这些变量:
$human = @$_POST['human'];
$rand1 = rand(1, 9);
$six = 6;
$res = $rand1 + $six;
然后我做的:
if($human==$res){
echo "Correct";
}else{
echo "Incorrect";
}
这不行!有任何想法吗?
是你在调用'rand(1,9)'的同一个php文件的html代码的一部分吗? – vee
你必须存储正确的值。 –
@vinodadhikary是的,它是 –