in reply to Re: SeaMonkey 2.0.8 Cookie Issues
in thread SeaMonkey 2.0.8 Cookie Issues
I reinstalled CGI.pm just in case.
When I try to get the cookie value for the previously set cookie
#!/usr/bin/perl use strict; use warnings; use CGI; use lib '/home/user/perl/usr/lib/perl5/site_perl/5.8.8'; my $query = new CGI; print $query->header; print $query->start_html(); my $cookie = $query->cookie('OLD_COOKIE'); print "IT IS: $cookie";
I get "IT IS:" when I change the cookie name my $cookie = $query->cookie('NEW_COOKIE'); , I get "IT IS: cookie value"
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: SeaMonkey 2.0.8 Cookie Issues
by Corion (Patriarch) on Oct 10, 2010 at 20:12 UTC | |
by Anonymous Monk on Oct 10, 2010 at 20:26 UTC | |
by Corion (Patriarch) on Oct 10, 2010 at 20:53 UTC |