Help for this page

Select Code to Download


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