in reply to One liner to read all cookie key/vals into a Hash...

What's $q?

Replies are listed 'Best First'.
Re^2: One liner to read all cookie key/vals into a Hash...
by smullis (Pilgrim) on Nov 08, 2004 at 11:30 UTC

    Aha...

    $q is my query object (I'm using CGI.pm in an OO style.)

    e.g

    # Set up Pragmas + external modules use strict; use warnings; use Data::Dumper; use CGI qw(:standard); my $q = new CGI; print $q->header; print "Hello World!\n"; my $cookie_name = "whatever you wanna call it"; my %cookie_hash = (map { split /=/, $_ } $q->cookie('$cookie_name')); +# print Dumper \%cookie_hash; print $q->end_html;

    Cheers

    SM