in reply to reading javascript cookies
If you are already using CGI.pm, you should just use the cookie methods it provides (see the doc).use CGI::Cookie; # fetch existing cookies %cookies = CGI::Cookie->fetch(); print $cookies{'cookie_name'}->value;
|
|---|