Help for this page

Select Code to Download


  1. or download this
    my $cookie = $CGI->cookie(
                                    -name=>'stflogin',
    ...
                                    -value=>$CGI->param("password"),
                                    -expires=>'+1m');
    print $CGI->header(-cookie=>[$cookie,$other_cookie]);
    
  2. or download this
    my $cookie = $CGI->cookie(
                                    -name=>'stflogin',
    ...
                                    -name=>'stfpassword',
                                    -value=>"");
    print $CGI->header(-cookie=>[$cookie,$other_cookie]);