I've tested this in Firefox 1.0, IE 6, Opera 7+ and Safari 1.2. Firefox is the only browser in which this error occurs.
I'm setting a cookie with php and it's not showing up the the $_COOKIE array in Firefox for some reason. This code is excecuted every time:
if (!$_COOKIE['sub_domain_com']) {
// Set the cookie
setcookie('sub_domain_com', 'variables go here', time() + 2592000, '/'); // 30 days
}
I check Firefox's cookie cache and there it is, just as it should be. I don't want to reset this cookie every time. Is this a bug or am I doing something wrong?