so I'm looking at the PHP docs for setcookie and this is what I see:
bool setcookie ( string name [, string value [, int expire [, string path [, string domain [, bool secure]]]]] )
they say if you want to have the cookie expire when the browser closes then do something like this:
setcookie("TestCookie", $value);
But I want this cookie to work on several subdomains no I need to fill in the domain part... is there any way around this in PHP?