in reply to Image Upload
As the author of CGI::Upload however, I would think that it should be able to do exactly what you desire - For example, the snippet of code returns a file handle to the file uploaded through the file input field named 'form_file_upload_field' on your HTML form:
use CGI; use CGI::Upload; my $cgi = CGI->new; my $upload = CGI::Upload->new($cgi); my $fh = $upload->file_handle('form_file_upload_field');
In addition to this, example usage of this module can be seen in this thread - If you have any questions regarding the CGI::Upload module, please feel free to contact me via email or /msg.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Image Upload
by tachyon (Chancellor) on Apr 03, 2002 at 08:43 UTC | |
|
Re: Re: Image Upload
by kappa (Chaplain) on Apr 03, 2002 at 12:02 UTC | |
|
Re: Re: Image Upload
by emilford (Friar) on Apr 03, 2002 at 19:50 UTC |