我的 file.php 文件中有以下代码:
if (isset($_POST["activate"])){
$confirmed = true;
$result = execute_query("UPDATE tributes SET t_confirm = 1 WHERE t_id=".$_POST["tid"]." AND t_activation='".$_POST["activate"]."'");
if($result){
}
}else{
print "NO";
}
我通过以下网址调用此文件:
http://localhost/ccmta/tribute.php?tid=55&activate=QiScE8W76whfQD0Twd15enG31yDEf1iVGLL0SHEB9doqI16bd8kskOPXu6bGZE65o7XPp9EXUBCJS7IbcjNZ98hA8vR11b0Ve0Qm
但是 isset 函数无法识别 URL 中参数中的激活变量并落入 else 括号中。我还调用了 print_r 来查看 $_POST 变量中的内容,它是一个空数组。知道为什么吗?