FORM variables are a struct in CF. You can access them like this: <cfloop collection="#FORM#" item="CurrentFormField"> <cfoutput>#CurrentFormField# is: #FORM[CurrentFormField]#</cfoutput> </cfloop>
You can see how from there you can do processing based on the name of the Form field etc. You can also use all of the struct functions on the FORM scope like StructFindKey() etc. On 8/4/06, Dmitrii Dimandt <[EMAIL PROTECTED]> wrote: > Coming from PHP I sorely miss the following feature: > > <input name="Name[0][param]"> > <input name="Name[0][param2]"> > > <input name="Name[1][param]"> > <input name="Name[1][param1]"> > > When submitted, form values would be accessible through an array. This > was immensely helpful in cases when multiple similar records (a list > from a database, for instance) needed to be edited simultaneously. > However, CF arrays are not hashes, so this feature is unavailable :( > > I wonder, if there is a function of sorts that would accept incoming > form fields with such names and convert them to a manageable array > (I'm just too lazy to write it myself :) ) > > Thank you > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248783 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

