In my app I have to implement a registration process represented by four pages. I want to store each page's information in a session so that at the end of the fourth page when I click the register button, all data could be stored in my local database. I have a next button at the end of each page.
When I click the next button the validation for that page would happen and if all valid details entered the app will navigate to the next page.
I have two questions:
- How do I navigate between the four pages?
- How can I maintain the session until I reach the fourth page?