>On the action page, I thought I could loop based on the looplength
variable,
>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.
>(And, yes, I know I could do a two dimensional array. I'm just using two
>one-dimensional arrays so that I know I'm not just screwing up the array
>structure.)


><cfset catarray[i] = "evaluate(form.cat_id#i#)">


Try
<cfset catarray[i] = Evaluate("form.cat_id" & i)>

Regards,
Seth Petry-Johnson
Argo Enterprise and Associates

------------------------------------------------------------------------------
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.

Reply via email to