in reply to IE vs. Firefox : Can't use an undefined value as a HASH reference error

I'd take a guess that Firefox is setting the content-type of the form to 'multipart/form-data' when it sees the upload field whereas IE is not - you should put the enctype attribute of the form element ie.:

<form method="post" action="whatever" enctype="multipart/form-data" +>

/J\

  • Comment on Re: IE vs. Firefox : Can't use an undefined value as a HASH reference error
  • Download Code

Replies are listed 'Best First'.
Re^2: IE vs. Firefox : Can't use an undefined value as a HASH reference error
by hmbscully (Scribe) on Feb 24, 2005 at 18:39 UTC
    The form is already set that way. Thanks for the suggestion.