Hi,
I'm having some trouble with setting the cookies as you can see here:
HTTP_COOKIE_VARS ==> Array(
fs2k3_lang ==> String(dk)
PHPSESSID ==> String(793d0269726b26f2ed0eb06ac12b4c39)
)
_COOKIE ==> Array(
fs2k3_lang ==> String(uk)
PHPSESSID ==> String(793d0269726b26f2ed0eb06ac12b4c39)
)
As you may notice the variable 'fs2k3_lang' has different values in respectively $COOKIE and HTTP_COOKIE_VARS.
Howcome is that? - I thought they were supported to be the same?!
The Cookie was set using:
setcookie('fs2k3_lang', $_GET['lang'],time()+1259200)
--blr