Hello,
I'm having problems setting/reading cookies from a Phoenix browser (Mozilla based browser) - everything works fine in EI.
This is what i'm using to set the cookie:
$domain = 'mydomain.com';
setcookie("cart",serialize($this->items), (14 * 86400), '/', $domain, 0) or die('Could not post cookie');
I did not recieve any error messages, so it seems as if the cookie has been set properly, however, when I go to view the cookie files, the only cookie i see for my site is named "PHPSESSIS", and not the name i gave it, "cart". When I try to read the cookie, I get nothing....
If anyone has encountered the same problem and can offer some insite as to what the problem may be, I would really appreciate it, thanks in advance.