Help for this page

Select Code to Download


  1. or download this
    # code 1
    use CGI;
    ...
       print OUT $buffer;
    }
    close(OUT);
    
  2. or download this
    # code 2
    use CGI qw(:standard);
    ...
       print OUT $buffer;
    }
    close(OUT);