I am developing a very small survey application, likely 3-4 pages web application. so my question is what is the best way to save survey data?
by the way so far I have come up with the following ways.
save to database and mark each survey as incomplete. when user submits last form of the survey check completeness of the survey and mark it as complete if it is complete.
save to sessions and than save to database when user submits last form of the survey.
what do you think about those methods?