stubarny1 Posted March 30, 2011 Share Posted March 30, 2011 Hello everyone, I’m looking to increase my website’s sign up rate by splitting the rather long sign-up form into 3 short forms spread over 3 pages – the user would then fills out each form and progresses to the next (like the linkedin.com sign up process). Please could you tell me how I should store the variables as my users move from one form to the next, whilst avoiding any hacking vulnerabilities? – I thought of using session variables but someone told me to never store passwords in a session variable? (one of the form fields is for a user to fill in a password). Thanks for any help you can give! Stu Quote Link to comment https://forums.phpfreaks.com/topic/232224-splitting-sign-up-form-over-several-pages/ Share on other sites More sharing options...
betterphp Posted March 30, 2011 Share Posted March 30, 2011 The session is fine... as far as I know anyway. The only potential problem comes if you use shared hosting, because they often use a shared tmp folder so other people can view your users session data. An alternative way would be to insert the info into the database bit by bit, but that will be a bit dodgy if they give up after step 1 Quote Link to comment https://forums.phpfreaks.com/topic/232224-splitting-sign-up-form-over-several-pages/#findComment-1194636 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.