RE: Newbie cookie question

2001-01-05 Thread Geoffrey Young
-Original Message- From: James Hall [mailto:[EMAIL PROTECTED]] Sent: Friday, January 05, 2001 3:23 PM To: [EMAIL PROTECTED] Subject: Newbie cookie question Now that I have mod_perl installed I cannot pass any cookies like I used to. I have not changed any scripts [yet] and all

RE: Newbie cookie question

2001-01-05 Thread James Hall
Thanks for the response! Jim -Original Message- From: Geoffrey Young [mailto:[EMAIL PROTECTED]] Sent: Friday, January 05, 2001 2:53 PM To: 'James Hall'; [EMAIL PROTECTED] Subject: RE: Newbie cookie question -Original Message- From: James Hall [mailto:[EMAIL PROTECTED]] Sent: Fr

RE: Newbie cookie question

2001-01-05 Thread Stephen Beitzel
On Fri, 5 Jan 2001, James Hall wrote: [snip] $user=$query-param('login'); $password=$query-param('pass'); Okay, there's your problem. You may want to try it this way: use CGI::Cookie; ... my %cookies = CGI::Cookie-parse($r-header_in('Cookie')): my $user = $cookies{'login'};