我想做一个类似反垃圾邮件系统的东西,我有这个 HTML:
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";
}
这是行不通的!有任何想法吗?