i have tried other way bt still failed bt i cant understand why its not working, when i put the user and press Submit button it reach at wel.pl and redirect me back to home.pl
home.pl $cg = new CGI; my $cookie = $cg->cookie(-name => 'id', -value => $user, -expires => '+2m', -path => '/'); print $cg->redirect("wel.pl"); print $cg->header(-cookie => $cookie); wel.pl my $cookie = $cg->cookie('id'); if ( ! $cookie ) { print $cg->redirect("home.pl"); } elsif($cookie) { #continue to the site if cookie exists }
In reply to Re^4: cookie problem
by bigup401
in thread cookie problem
by bigup401
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |