Hi All,
I've got a form that can have as many files uploaded at a
time as the user needs. I am then sending those files off to a
different server using cfhttp.
I have the total number of files passed over by the form.
I want to loop through to send all the files but i can't get
the dynamic file names to work. This is what i've got.
<cfloop index="i" from="1" to="#FORM.totalImages#">
<cfhttpparam name="image#i#" type="file"
file="#FORM.image##i#">
</cfloop>
Any help would be appreciated.