P
|
procheck 6/12/2012 |
You will need to learn about database design. |
C
|
cgphp 6/12/2012 |
If the incident doesn't require extra forms save the first form directly to the database. |
![]() |
Sergey Kornilov admin 6/12/2012 |
I guess you are going to have eleven or twelve tables. One table per form (if all forms vary greatly) and one main table (Incident). Incident table can be your main table in fact, depends on how you want to handle this. Form tables can be linked to the master Incident table as Master-Details. Based on data supplied in the first form you can rediect user to one or more form Add pages. |
D
|
dodgebros author 6/12/2012 |
If the incident doesn't require extra forms save the first form directly to the database. If the incident requires extra forms, keep data in session variables and save them when all forms are completed.
|
![]() |
Sergey Kornilov admin 6/13/2012 |
You just need to create one form for each table. One form - one table - one Add page. |