Help for this page

Select Code to Download


  1. or download this
    my $text="../files/jack/2012/derpone.pdf";
    $text = basename($text);
    my $cgi = CGI->new; #Instantiate a CGI class
    ...
    $cgi->h1('Success'), # create the Tag <h1>TEXT</h1>
    
    $cgi->p($text),
    
  2. or download this
    
    my $cgi = CGI->new; #Instantiate a CGI class
    ...
    my $text="../files/jack/2012/derpone.pdf";
    $text = basename($text);
    $cgi->p($text),