Is it possible to set a cookie for http://www.example.com from a PHP file located at https://secure.example.com? I have some code that was given to me, that appears to try and fails at this. I was wondering if this is possible at all.
Is it possible to set a cookie for http://www.example.com from a PHP file located
Share
Webpages can only set cookies for the second (or higher) level domain that they belong to.
This means that
secure.example.comcan read and set cookies forsecure.example.comor.example.com, the latter of which can also be read and set bywww.example.comOne last note: If the secure flag is set on a cookie, it can only be read and set over an https connection.