![]() |
Multiple File Upload Help
I keep getting this error: Element NUMBEROFFIELDS is undefined in VARIABLES
If anyone could help I would appreciate it. Here is the client side: <cfset numberoffields = 4> <form action="fileupload.cfm" method="post" enctype="multipart/form-data"> <cfloop index="i" from="1" to="#numberoffields#" step="1"> <cfset filename = "file" & #i#> <input type="file" name="<cfoutput>#filename#</cfoutput>" /><br /> </cfloop> <input type="submit" name="submit" value="Upload"> </form> Here is the server side: <cfloop index="i" from="1" to="#variables.numberoffields#" step="1"> <cfset filename = "form.file" & #i#> <cfif evaluate(variables.filename) NEQ ""> <cffile action="upload" filefield="#variables.filename#" destination="d:\bla\bla\bla" accept="image/jpg, image/png, image/x-png, application/msword, application/vnd.ms-word, application/mspowerpoint, application/vnd.ms-powerpoint, application/pdf, application/msexcel, application/vnd.ms-excel" nameconflict="makeunique"> </cfif> </cfloop> |
Quote:
Code:
...Code:
<cfloop index="i" from="1" to="#form.numberoffields#" step="1"> |
| All times are GMT +1. The time now is 02:19 AM. |
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.