If have a script which processes image uploads within an MVC framework and have started setting up uploadify, but I am having an issue. The only reason I am using uploadify is because I can't upload multiple files without using multiple input tags. I want uploadify to upload the images only when I click submit and them make them available to \[code\]$_FILES\[/code\] in my form processing script. I'm sure this could be easily accomplished by anyone who knows Javascript, but sadly I have no experience in it. There are a couple of other questions like mine, but different in what they want to accomplish and they didn't reach a satisfactory solution for me.In short, I would like a better solution for this:\[code\]<form action="" method="post" enctype="multipart/form-data"> <input type="file" name="file[]"/> <input type="file" name="file[]"/> <input type="file" name="file[]"/> <input type="file" name="file[]"/></form>\[/code\]Also, I understand that adding \[code\]multiple=""\[/code\] to the end of the input tag will allow multiple uploads in some browsers, but I need this to work in Internet Explorer.Somewhat similar questions:Uploadify - submitting form after uploaduploadify to use upload files on form submit