Help for this page

Select Code to Download


  1. or download this
    <form name="test" method="post" action="/cgi-bin/test.pl">
    <input name="myfile" type="file">
    <button>Submit</button>
    </form>
    
  2. or download this
    my $cgi = new CGI;
    my $file = $cgi->param('myfile');
    ...
    print "<p>$file";
    
    print $_ while (<$fh>);