Cookie Problem

2005-08-01 Thread Mike Blezien
Hello, I'm trying to pass a cookie value as a string. IE: $cookie_string = "$params->{username}|$params->{password}|$time|$time"; $cookie = $cgi->cookie(-name=>'cookie_name',-value="$cookie_string",-expires=>'+1y'); But this is the result I get: test22%7C123456%7C1122932023%7C1122932023 I'

Re: Cookie - problem

2003-11-05 Thread Andrew Gaffney
Christian Klinger wrote: Hello List i'm a perl newbie does anyone know why this scritp dont set the cookie? - #!/usr/bin/perl use strict; use CGI; use CGI::Carp qw(fatalsToBrowser); use Net::LDAP; use CGI::Cookie; use MIME::Base64; my $cgi = new CGI; my $uid = "cklinger"; my $pw

Re: Cookie - problem

2003-11-05 Thread Aman Raheja
/Cookie.pm Why is it there? Could you please share? Thanks Aman Raheja AGF Technologies http://www.agftech.com - Original Message - From: "Christian Klinger" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, November 05, 2003 10:09 AM Subject: Cookie - pro

Cookie - problem

2003-11-05 Thread Christian Klinger
Hello List i'm a perl newbie does anyone know why this scritp dont set the cookie? - #!/usr/bin/perl use strict; use CGI; use CGI::Carp qw(fatalsToBrowser); use Net::LDAP; use CGI::Cookie; use MIME::Base64; my $cgi = new CGI; my $uid = "cklinger"; my $pw = "klinger"; my $ldaut

Http Session - cookie Problem

2001-08-28 Thread Rajeev Rumale
Greetings every body, I have am working on a web based application which requires authenticaion. I am using some especial cookies to reference the session values which are maintained sepeartely. The the cookie values are set to some expriey time. This works fine, therotical as well as practicall