nginx-upload-module
nginx-upload-module copied to clipboard
Passing an array throught upload_pass_form_field
Is it possible to pass an array to the upload_pass_form_field see you have second file ... <input type='text' name='colors[]>
Thank you for the great work already
Array -- no, but multiple files in a form are allowed.
Thank You , for your quick answer I managed a work around with the PCRE expresion adding a number to the fields and set upload_pass_form_field "nameoffield[0-9]+|nameofnextfield[0-9]+";
Bye