Question
Create cfset with cfloop?
I need to be able to iterate through some submitted form
variables, and create a cfset for each. Unfortunately, what I have
tried isn't working. Any thoughts?
Current code below:
<cfloop list="#fieldnames#" index="i">
<cfset client.#i#="#Evaluate(i)#">
</cfloop>
Current code below:
<cfloop list="#fieldnames#" index="i">
<cfset client.#i#="#Evaluate(i)#">
</cfloop>
