Hello,
I have a cookie question.
I have the following code is a file called tc.php
<?
global $HTTP_POST_VARS, $HTTP_COOKIE_VARS, $settings, $sql ;
$val="123";
setcookie ("auth", $val , time() + 3600);
$cookie = $HTTP_COOKIE_VARS['auth'];
echo "cookie is: $cookie";
?>
I have no problem retrieving the value cookie value ( 123 ) on my local
machine but when I post to the internet I can't get the cookie value.
Any ideas why?
Thanks.
David R
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php