- or download this
Test print of cookie --
Cookie: sessionID=test%3A%3Atest%3Ad41d8cd98f00b204e9800998ecf8427e; p
+ath=/; expires=Thu, 07-Aug-2003 22:20:06 GMT
- or download this
My cookie code (which finally works)--
$cookie = cookie(-name => 'sessionID',
-value => makeCookieValue($userpass),
-expires => '+1h'
);
- or download this
I've tried this suggestion which someone gave to me--
my $cookievalue = getFirstOrValue(cookie());
print "New cookie stuff: $cookievalue";