Because of the type of data that is passed when using an upload form (enctype="multipart/form-data"), you cannot pass form element values using that form. You can pass information concerning the file uploades using that form (such as file name, size,etc.) but not form field data. You would have to use a separate form for that. (I usually pass the file upload data to another form and have endusers populate the form from there - like a wizard - step one upload file, step two complete form.)
|