I have a form that is divided into 10 parts, that is, I'm going to save via post the variables from page to page. However, if you refresh the page all previous variables are lost.
How can I solve the problem?
Outline:
Phase 1 - phase1_view - > Post - > phase1controller - > loadview_fase2
Phase 2 - phase2_view - > variable_phase1 (input hidden) - > post- > phase2controller- > loadview_fase3 (sends all saved variables to phase3)
Phase 3 - phase 3_view - > Variables_fase_1_e_2 (input hidden) - > post - > phase3controller - > loadview_fase_4 (sends all variables saved so far to the phase 4 view)
.
.
.
From then on ... But if you refresh the page, all variables are lost.
Thank you.