- or download this
sub SetCookies {
...
print "Set-Cookie: ", $c, "\n";
}
}
- or download this
$c = new CGI::Cookie(-name => 'foo',
-value => 'bar',
...
-path => '/cgi-bin/database',
-secure => 1
);
- or download this
# $Log: cookielib,v $
# Revision 1.6 2006/04/08 08:34:31 gellyfish
# Appeared to be a cut and paste error in SetCookies