Help for this page

Select Code to Download


  1. or download this
    $session = new CGI::Session(undef, undef, {Directory=>'./tmp'}) or die
    + CGI::Session->errstr;
    
  2. or download this
    my $action = $cgi->param("submit");
    
    ...
      print $cgi->header;
      print $cgi->start_html(-title=>"Home Page");
    }
    
  3. or download this
    my $session = CGI::Session->load or die
    CGI::Session->errstr;
    print $session->header;
    ...
      print $cgi->end_html;
      exit(0);
    }