I have a page where people need to be able to upload multiple files that go to different places. I can use:
<input type="file" multiple="multiple" name="fileSet1" /> <input type="file" multiple="multiple" name="fileSet2" /> <input type="file" multiple="multiple" name="fileSet3" /> To get the files but once I get to the back end I'm stuck. Using CFFILE with action="upload" only uploads the first file but at least I can send it to the right place. Using action="uploadall" sends all the files to all the locations because I can specify a filefield value. Obviously I could have one form for each file set but that gets tedious for the end user. Any suggestions? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353257 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

