My PHP Plaform: Windows 2000 advanced server, Apache, and PHP4.0.5
I set a cookie var by Setcookie Function: Setcookie("name",$var,time()+3600);
But it can't be echo. echo $HTTP_COOKIE_VARS['name']; it returns NULL...
How to resolve?
You can't echo it in the same script. The cookie value will be available only after the script terminates.
Diego