Uploading Files using CGI
Uploading files is a useful thing to know about especially if you want to go about making some kind of admin function for your Web site. There is a very useful form element which is: <input type="file" name="file_data">. This element displays a textbox and a "Browse" button in the browsers which support it:
When you click on the "Browse" button you will get a file dialog where you can cho...