> > <CFLOOP COLLECTION="#FORM#" ITEM="itmField"> > > <CFSET "FORM.#itmField#" = StripHTML(FORM[itmField])> > > </CFLOOP> > > In the above loop, the collection referred to is "#FORM#" - > which is a variable named FORM - and that's got me lost - > does it imply that the form can have a variable name assigned > to it?
The Form scope IS a variable in CF 4.x+ - it's a structure. You can't really give it a name, it's just called "Form". You can, however, treat it like any other structure; you can loop over it as shown above. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ::::::::::::: dream :: design :: develop ::::::::::::: MXDC 02 :: Join us at this all day conference for designers & developers to learn tips, tricks, best practices and more for the entire Macromedia MX suite. September 28, 2002 :: http://www.mxdc02.com/ (Register today, seats are limited!) :::::::::::::::::::::::::::::::::::::::::::::::::::::: ______________________________________________________________________ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

