Help for this page

Select Code to Download


  1. or download this
    home.pl
    my $cg = new CGI;
    my $cookie = $cg->cookie(-name => 'login',
    ...
    elsif($cookie) {
      continue;
    }
    
  2. or download this
    home.pl
    my $cookie = $cg->cookie(-name => 'id',
                              -value => $user,
    ...
    elsif(my $cookie) {
      continue; #continue to the site if cookie exists 
    }