Help for this page

Select Code to Download


  1. or download this
    my $cookie = $cgi->cookie(-name => 'user', -value => 'user', -expires=
    +> '+1m');
    print $cgi->redirect(-location => $nextpage -cookie => $cookie);
    
  2. or download this
    $cookie = $cgi->cookie('user');
    $page = '#page';
    ...
    if ($cookie) {
    #continue
    }