HTML
<FORM METHOD=POST ENCTYPE="multipart/form-data" ACTION="/cgi-bin/mycgi.pl"> File to upload: <INPUT TYPE=FILE NAME="upfile"><BR> <INPUT TYPE=SUBMIT VALUE="Submit"> </FORM> which gives us this form (please note that the CGI for this form is set to accept only very small files, so try sending something under 1K):
File to upload:
Configuring a form for file uploads requires setting two attributes in the
For the time being, only use form-based file upload if you know that the users will have Netscape (for example in an intranet or if the form is just for one person that you know has Netscape) or MSIE 4.0 or later. An often expressed wish with file uploads is to have a way of suggesting the file type being uploaded. Netscape, for example, when it gives you the file upload dialog box, inexplicably assumes you want to upload an HTML file. Unfortunately, there is no way to suggest a file type. | >