I have 6 forms. Every single form is a seperate file (form 1, form 2, form 3 till form 6) When the first form has been filled in the visitor can go to form 2 etc. etc.
Whats the best way to save all the data, entered by users, in an access database?
when each form is submitted, grab the info for the form fields and construct and INSERT sql statement to save to your database.
That's possible but each form contains about 15 till 20 input fields. At the end I 'll have about 108 request.forms and a huge INSERT sql statement... Is it the only and best option?