<snip>
> > The following seems to work for me in nabbing all the cookies sent
> > and putting them into a hashref $cookies
> > 
> >    my $cookies = {};
> >    my $cookie_info = Apache::Cookie->fetch;
> >    foreach my $name ( keys %{ $cookie_info } ) {
> >      $cookies->{ $name } = $cookie_info->{ $name }->value;
> >    }
> > 
> 
duh.... I should have seen that! The "value" is a name blessed into 
the Cookie package. It's not obvious from the documentation, perhaps 
the author could tweek it up for the next newbie victim. :-)

Michael
[EMAIL PROTECTED]

Reply via email to