> I have a form that has a user-defined number of options (user
> gets to pick
> how many categories a particular resource fits into).
> <big snip>
> and get the corresponding values. But, all I'm able to get is
> the names of
> the form fields. *sigh* I'm obviously not using "evaluate()"
> correctly.
> <snip>
> <cfset catarray[i] = "evaluate(form.cat_id#i#)">
> <cfset subcatarray[i] = "evaluate(form.subcat_id#i#)">
> </snip>
Deanna,
Your evaluate functions are just slightly malformed. Try these two lines
instead:
<cfset catarray[i] = evaluate("form.cat_id#i#")>
<cfset subcatarray[i] = evaluate("form.subcat_id#i#")>
Hope this helps,
ron allen hornbaker ����
mailto:[EMAIL PROTECTED] ~
humankind systems, inc.
http://humankindsystems.com/LoftCam
------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.