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
A good place to start is easycfm.com they have loads of tutorials covering all aspects of cold fusion
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> Code (markup):
Hello everybody I want to do something as that. So insert datas is not the problem, but to create the form on 3 o more pages. Somebody know how to do that? Thank a lot Guillermo Guillermo