I am trying to split up the registration form into two php pages. Is it possible for the second page to submit its form along with the $_post which contains the information from the first page? well the question should be.. is there a function in php which will bind the $_post variable to the current form submit method?
The other ways to get this working are the hidden fields, sessions, cookies. Can i do without these?
page1.php (submit)-> page2.php (submit the form along with $_post/$_get) -> page3.php (where i'll do database manipulations.)