in reply to Re: Yet another question about cookies.
in thread Yet another question about cookies.
And it works fine on Firefox. On MSIE, cookies are saved on another file, named gabuleu.com (my domain name). When the user calls my website from a MSIE, nothing is retrieved. On the other side, when I test it using firefox, cookies are retrieved.Maybe CGI::Cookie handles this. I haven't tried it.#- Set Cookie -------------------------------------------------------- +---------# sub setCookie { # end a set-cookie header with the word secure and the cookie will o +nly # be sent through secure connections my ($name, $value, $expiration, $path, $domain, $secure) = @_; print "Set-Cookie: "; print ($name, "=", $value, "; expires=", $expiration, "; path=", $path, "; domain=", $domain, "; ", $secure, "\n"); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Yet another question about cookies.
by sgifford (Prior) on Jun 07, 2006 at 03:37 UTC |