0

我的 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 变量中的内容,它是一个空数组。知道为什么吗?

4

1 回答 1

5

是 -$_POST是 POST 数组,而不是 GET(查询字符串/URL)数据。如果两者都需要,请使用$_REQUEST,否则,请使用$_GET

于 2011-10-21T00:05:50.993 回答