I’m currently working on the setup page where users are being redirected to after they register/
The setup page basically make the user fill in important information and there are 3 Steps to it. I dont want to create 3 pages , one step = 1 page as i think that isnt the efficent way to go.
I did try create a new facebook account and realise that they can do it all in one page, same as other sites.
One thing i noticed is the address bar having query strings, i’m currently using codeigniter / MVC , PHP. How do i do it the “Query string(address/?step=1) etc” way that makes it changes only the form and the css ACTIVE code for tab.
Or is there any other way to get this done?
Thank you!
How about creating 3 views for the 3 steps and loading them via your controller through ajax.
You can have the main view in 1st step and just append view 2 and view 3 to it as user progresses.
Javascript in view1:
Controller
Though you are creating 3 views, user feels that its one page.