after you set a cookie with data on it, how would you read to see if a cookie is on a computer, and what variables are on it? Thanks Anthony
Hi I know you can access the vars in a cookie from $HTTP_COOKIE_VARS and I guess the vars you set will be contained there.
Nick
I set a cookie with someones name in it...
setcookie ('cookie', 'name')
echo $cookie;
will give name.
(hope that works, its 04:30am so I'm a bit tired)