i have a php script that uses setcookie to set a cookie called "sess". i am using secure=true method with "" as the domain.
in both FF and safari, i can see the cookie is set for the same domain as the __ut (google analytics) cookies
but when i load a page and print_r($_COOKIE) i get only the __ut cookies, and not the "sess" cookie
why isn't php seeing the cookie? is the browser even sending it?
secure=trueworks only if you use secure connection, otherwise, setcookie() is not sending any data to the client. - Wh1T3h4Ck5