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