So, I have a form that is 40 pages on paper. I was going to take the natural sections of this form and make separate html forms for each section, with the idea that there will be the first form on the first page, then you will click Continue to the next section, which is essentially a 'submit' that moves the user to section 2, etc., until they fall into the last section. I do not actually save the form results in the database, but send an email. Then the idea is to store separate form responses (one html form for each section in real form) like arrays or The object in the session, so if they go back to the section in the form, it is re-filled with the value that they have introduced since they are stored in the session. the result will be an array in the session,storing results for each of my forms, and I have one form for each section.
my question is: is it safe to temporarily store things like SSN or driver license numbers like session variables? why or why not?
source
share