nblackwood Posted September 6, 2009 Share Posted September 6, 2009 how would i continue an already open session for inputting more data to that session on in multi-step registration process? I am under the impression that I can simply recall the currently open session or is it more involved? And also, how do I redirect into a frame rather than having to load another page out of frame after payment is complete? Any help is much obliged. Quote Link to comment https://forums.phpfreaks.com/topic/173301-solved-continuing-open-session-on-multiple-pages/ Share on other sites More sharing options...
bundyxc Posted September 6, 2009 Share Posted September 6, 2009 $_SESSION is simply an array that's kept open while the user is on their site. A cookie with a unique ID is stored client-side, and the server remembers the data pertaining to that unique ID. So you could add whatever you wanted to the $_SESSION array. Quote Link to comment https://forums.phpfreaks.com/topic/173301-solved-continuing-open-session-on-multiple-pages/#findComment-913505 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.