These things are necessary for Web-based uploads:* An HTTP server that accepts uploads.* Access to the /cgi-bin/ to put the receiving script. Prewritten CGI file-upload scripts are available.* A form implemented something like this:<form method="post" enctype="multipart/form-data" action="fup.cgi">File to upload: <input type=file name=upfile><br>Notes about the file: <input type=text name=note><br><input type=submit value=Press> to upload the file!</form>Not all browsers support form-based file upload, so try to give alternatives where possible.The Perl CGI.pm module supports file upload. The most recent versions of the cgi-lib.pl library also support file upload. Also, if you need to do file upload in conjunction with form-to-email, the Perl package MIME::Lite handles email attachments.
HTML
Topic: Forms
How can I allow file uploads to my web site?
Browse random answers:
What is a HTML Forms?
Waht is a Input Element?
How do I use forms?
Do I have to memorize a bunch of tags?
How do I make a form so it can be submitted by hitting ENTER?
Can I prevent a form from being submitted again?
How do I use forms?
How can I allow file uploads to my web site?
Differentiate HTML form methods GET and POST?
Can I use any HTML in the box?
What are the three types of form tags in HTML?
How do we use an image instead of the standard submit button?
How can I eliminate the extra space after a </form> tag in html?
How do I set the focus to the first form field?
Can I have two or more actions in the same form?
How can I use forms for pull-down navigation menus?
Difference between GET and POST Metods
How can you restrict all the textbox's autocomplete to off in a form ?
What is a <fieldset>tag?
How do I use forms?
What Are Form Input HTML Tags?