Tatnall has asked for the wisdom of the Perl Monks concerning the following question:
use strict; use warnings; use CGI; use CGI::Cookie; my $c = new CGI::Cookie( -name => 'session_id', -value => '23423', -domain => '.testdomain.com', -path => '/testfolder', -expires => '+30m', ); print header(-cookie=>$c); #--- Rest of Script
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: CGI::Cookie - Safari won't accept -expires
by jonadab (Parson) on Dec 22, 2006 at 22:49 UTC | |
|
Re: CGI::Cookie - Safari won't accept -expires
by derby (Abbot) on Dec 23, 2006 at 01:55 UTC | |
|
Re: CGI::Cookie - Safari won't accept -expires
by f00li5h (Chaplain) on Dec 23, 2006 at 13:08 UTC |