Rick7707
03-03-2009, 03:19 PM
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>
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>