wolverina has asked for the wisdom of the Perl Monks concerning the following question:
Lisa#!/usr/local/bin/perl use CGI; $q = new CGI; $cookie_in = $q->cookie("username"); if($cookie_in) { print $cookie_in; } else { print "Can't find cookie\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: reading javascript cookie
by Roger (Parson) on Oct 28, 2003 at 00:34 UTC | |
by jeffa (Bishop) on Oct 28, 2003 at 04:34 UTC | |
|
Re: reading javascript cookie
by Anonymous Monk on Oct 28, 2003 at 01:13 UTC |