Question : cookie

i wrote some pages in perl and wanted to ask for login and password and after that give a cookie that expiers after one hour. i wrote the cookie like that:
my ($cookie);
$cookie = CGI::cookie(  
                          -NAME => "lior",
                         -VALUE => "sherman",
                          -EXPIREs => "+1h",);
print CGI::header( -COOKIE=>$cookie);

for some pages i asked for the cookie like that:
require 'cookie.lib'; // i used a cookie lib
...
if (&GetCookies) { // if i have cookie then...
if i dont i send them to the login and password page.

it work ok for the first time to use it but for the seconed time, after an hour , day or so, if i put the login and password and supposed to get the cookie, if i go to a page that asked for the cookie he dont find it and take me to the login and password page, allthough i put it correctly and supose to have a cookie.

what i need to do to make it work???
maybe to check the expires and not if i have a cookie? like if i have a cookie -1 hour from now?

thanks.

Answer : cookie

$cookie = CGI::cookie(    
                          -NAME => "lior",
                         -VALUE => "sherman",
                          -EXPIRES => "+1h");
print CGI::header( -COOKIE=>$cookie);


remove the , in the
                          -EXPIRES => "+1h",);

line



Random Solutions  
 
programming4us programming4us