Hi. When I installed CFMX it made the address localhost:8500 but I would like 127.0.0.1 . How do I go about doing that?
Thanks Phil -----Original Message----- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 27, 2002 4:21 PM To: CF-Talk Subject: RE: Dyanmic Form Names huh? > #form.fieldnames# woudl return > > section1,section2,section3,section4 > > I need the values of > > #form.section1# > #form.section2# > #form.section3# > > I need to turn them into variables and get their values > > any other suggestions?? Charlie's original suggestion was that you loop over the variable Form.Fieldnames: <cfloop list="#Form.fieldnames#" index="i"> <cfoutput>#Form[i]#</cfoutput><br> </cfloop> Or, you could use the Form structure to do essentially the same thing: <cfloop collection="#Form#" item="i"> <cfoutput>#Form[i]#</cfoutput><br> </cfloop> I'd recommend the second approach if you're using a server which supports it (CF 4+), since the behavior of Form.fieldnames has changed between CF 5 and CF MX (duplicate field names are no longer displayed), but either will do for most uses. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ______________________________________________________________________ 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

