I have a few questions about cookies, since I am going insane:
I am currently using this to set a cookie:
code:
setcookie(\"macvillage_auth\", \"$username:$password:$hash:$id\", time()+999999999, \"/\", \".accettura.com\");
and to remove a cookie:
code:
setcookie(\"macvillage_auth\", \"$username:$password:$hash:$id\", time()-999999999, \"/\", \".accettura.com\");
Now that works good in any browser but Netscape 4.x, which still accounts for a decent ammount of my traffic, thus can\'t be ignored.
The cookie needs to work on various subdomains, so I am using \".accettura.com\" so that it still uses two \'.\' as someone kindly pointed out.... but why does it work in all other browsrs, including my all time favorite Mozilla, and my arch enemy iCab, but not in Netscape 4.x?