I have simple test page. with the following code....
<?php
setcookie ("XXX","It works",0,"/","pschallenge.com",0);
echo "Cookie is ";
echo $XXX;
echo "=================";
echo $HTTP_COOKIE_VARS["XXX"];
?>
I run the script, and it works (second reload time shows cookie, as expected). What I can't seem to verify is that the cookie is written to the hard drive. Where does IE and NS store the cookies. I didn't see anything in /winnt/cookies. Secondly, is a cookie set in NS visible in IE?
Thanks,
Brian