Debt Consolidation - Wordpress Theme - Turquoise Jewelry - Debt Consolidation - Bet365 bonus

PDA

View Full Version : multi page (wizard like) forms


Benign
Aug 28th 2006, 6:24 am
Hi everybody:
I need to make a multipage form(wizard like form) that insert data into several tables(4-5 tables). I searched for a solution a lot but couldn't find an easy way that can let me make the pages with DW/CFM. I heard many people recommended useing SESSION VARRIABLES. I am a novice in coldfusion. Please help me find a tutorial/method making my form. I repeat it again that data should be inserted into different Related Database tables.(I use MS Access)
Thanks
Benign

seamus.hogan
Nov 11th 2006, 6:47 am
A good place to start is easycfm.com they have loads of tutorials covering all aspects of cold fusion

j0ned
Nov 14th 2006, 8:25 am
Just make two seperate cfquery or cfinsert tags with if statements.

<cfif IsDefined("FORM.SubmitF1")>

<CFQUERY....>
insert into tbl_credit_cards...
</cfquery>

<cfquery...>
insert into tbl_customers...
</cfquery>

<cflocation url="index.cfm?form=2">

</cfif>