Help for this page

Select Code to Download


  1. or download this
    <form action="/cgi-bin/upload.cgi" method="POST" enctype="multipart/fo
    +rm-data">
    File to upload:
    <input type="file" name="file">
    </form>
    
  2. or download this
    my $file = $q->param('file');
    my $fh = $q->upload($file);
    my $buffer;
    ...
    while ( read($fh, $buffer, 16384)) {
        print OUTPUT $buffer;
    }