in reply to Re: Removing dot before cookie host/domain URL
in thread Removing dot before cookie host/domain URL
#!/usr/bin/perl use CGI; $query = new CGI; $cookie1 = $query->cookie( -domain=>'foobar.com', -name=>'TheCookie', -value=>'anything ', -expires=>'+24h', -path=>'/', -secure=> 0); print $query->header(-cookie=>$cookie1); print"<html> <body> Done. </body> </html>"; print $query->end_html;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Removing dot before cookie host/domain URL
by ikegami (Patriarch) on Jun 24, 2011 at 20:47 UTC | |
by Anonymous Monk on Jun 25, 2011 at 00:56 UTC | |
by Anonymous Monk on Jun 25, 2011 at 01:11 UTC | |
by Anonymous Monk on Jun 25, 2011 at 05:36 UTC |