Code: Select all
setcookie('test1', 'foo', time() + 3600, '/', 'www.yogler.com', 1);
setcookie('test2', 'bar', time() + 3600, '/', 'www.yogler.com');
setcookie('test3', 'foobar', time() + 3600, '/', '.yogler.com');The script setting these is on 'www.yogler.com' on an SSL link.
Does this seems to have something to do with them being set on an https:// page? Do I need to worry about it?