- or download this
main.pl :
...
$session->save_param($cgi); #saves cgi object into session
$cgi->redirect(URI => "body.pl?sessionid=".$session->id);
- or download this
my $cgi = New CGI;
...
$cgi->redirect(URI => "car.pl?sessionid=".$session->id);
- or download this
my $cgi = New CGI;
...
print $cgi->param("name"); #should not have anything anymore