Help for this page

Select Code to Download


  1. or download this
    <html><head><title>Uploading Files</title></head><body> 
    <form action="/cgi-bin/uploading.cgi"method="post" enctype="multipart/
    +form-data"> 
    ...
    <input type="file"name="uploadfile"size="30"> 
    <input type="submit"> 
    </form></body></html>
    
  2. or download this
    #!/usr/bin/perl 
    use CGI::Carp 'fatalsToBrowser'; 
    ...
    print "No file chosen"; 
    } 
    print '</body></html>';