Handling File Uploading From www Forms w/ CGI.pm
On the server side, we’ll have the CGI program (upload.pl) that will handle the upload. We will use CGI.pm that does all the dirty job for us. CGI.pm processes the submission of the form for us and provides us with a simple method of retrieving each individual part of the submission. In our case we only have one element, called file:…

