in reply to Re: cgi and upload_hook
in thread cgi and upload_hook

not the form name, the form field name. when hook get's called it get's passed a filename, which is the value of that form field (the input box) - i want the *name* of the field (not the value) that hook is running against.

It's not what you look like, when you're doin' what you’re doin'.
It's what you’re doin' when you’re doin' what you look like you’re doin'!
     - Charles Wright & the Watts 103rd Street Rhythm Band

Replies are listed 'Best First'.
Re^3: cgi and upload_hook
by Miguel (Friar) on May 22, 2006 at 23:41 UTC
    not the form name, the form field name
    If you have this in your form:
    <input type="file" name="myFile">
    the form field name, the one that holds the file you're uploading, is.... 'myFile'.
    You can access it with:
    my $var = $cgi->param("myFile");
      I vaguely offended by your response sir. I know how to use CGI well enough. The trouble is it's not set up in a way that will allow me to use it as I like (ie, access already parsed post variables in an upload_hook call)

      please read the demo again, i suppose i'm looking for workarounds or ideas for patching/hacking CGI.pm

      It's not what you look like, when you're doin' what you’re doin'.
      It's what you’re doin' when you’re doin' what you look like you’re doin'!
           - Charles Wright & the Watts 103rd Street Rhythm Band