I want to create a php multipage form, but i can't use $_SESSION variables to save and reuse data when i'm changing pages.
I've tought to use a personal global array (eg. GLOBAL $data; $data = array();) where i'll put my field variables, but when i go back through pages (eg. from pag 2 to pag 1), array $data is empty.
Where i've done wrong?