So, I was wondering if anyone else has encountered this problem with Safari -- the inability for php to read its cookies.
For example, when signing in to my personal site's admin section, I have php write a cookie...
header ("Set-cookie: User=MYNAME;");
which is then listed in Safari's cookie list (so it writes the cookie), but then I have my next page read the cookie...
$User = $_COOKIE["User"];
if ($User) {
//ACTIONS, like show $User, etc.
}
And my actions don't take place. It won't even print the $User, so it seems like it can't read it at all. These pages and actions work in all other browsers though.
Anyone else experience this problem?
