ok guys,
after learning that we cannot set a cookie for multiple domains, i am trying to go around it by doing the following in my login script...
--[ authenticates user
--[ calls docookie.php from other domains such as bleh.com and blah.com
so if someone logs in on bleh.com it can do like
include("http://www.blah.com/docookie.php");
include("http://www.bluh.com/docookie.php");
although that doesn't seem to be working at the moment,
any ideas?
i tried doing a Header redirection but that didn't seem to be much good either. in the docookie script at the moment i have the code to set the cookie and then i do a
$bleh = getenv("HTTP_REFERER");
Header("Location: $bleh");
thanks in advance,
mike.