
June 19th, 2000, 03:24 PM
|
|
Member
|
|
Join Date: Apr 2000
Location: Hong Kong
Posts: 71
Time spent in forums: 3 h 10 m 50 sec
Reputation Power: 14
|
|
|
I want to read/write a Cookies with PHP. It is work in IE, but it doesn't work in NETSCAPE. Why? How to solve it? Thanks.
The script is:
**Read a Cookies:**
if ($HTTP_COOKIE_VARS["TestCookie"]==1)
echo "OK";
**Write a Cookies:**
setcookie("TestCookie","1",time()+86400);
|