Search found 2 matches

by John.Ohl
Dec 07, 2008 10:44 pm
Forum: XUpload
Topic: Pass the file upload field name to post vars
Replies: 1
Views: 2704

Nevermind, i figured it out. I had to change line 409 of upload.cgi from

Code: Select all

       my @file_fields = qw(file_name file_name_orig file_status file_size file_descr file_mime);
to

Code: Select all

       my @file_fields = qw(field_name file_name file_name_orig file_status file_size file_descr file_mime);
by John.Ohl
Dec 07, 2008 1:03 am
Forum: XUpload
Topic: Pass the file upload field name to post vars
Replies: 1
Views: 2704

Pass the file upload field name to post vars

Using xUpload Pro. Anyone have any idea how I would go about passing the name of the file input field along with the post vars? For example, I have an uploader with 10 file input boxes, all named file_1, file_2, file_3 all the way through file_10 How would I go about passing the field name into the ...