in reply to Re^2: cgi and upload_hook
in thread cgi and upload_hook
not the form name, the form field nameIf you have this in your form:
the form field name, the one that holds the file you're uploading, is.... 'myFile'.<input type="file" name="myFile">
my $var = $cgi->param("myFile");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: cgi and upload_hook
by qbxk (Friar) on May 24, 2006 at 00:49 UTC |