Ok. So if I under stand you, then if I change my domain for the cookie to .domain.com It will work.
This is how I go about this
function logincookie($id, $passhash, $expires = "0x7fffffff")
{
setcookie("id", $id, $expires, "/");
}
So if I change the domain to this:
function logincookie($id, $passhash, $expires = "0x7fffffff")
{
setcookie("id", $id, $expires, ".domain.com/");
}
It should work. Right??