Hi,
I have created a webpage that so far was working using SESSIONS.
As soon as the user successfully logs in, i save some variables inside a SESSION array and pass them to the mainpage.php script (or any other script that needs these variables).
Now i want to implement "REMEMBER ME" feature. I know that i need to store the variables i want into a COOKIE and then access the cookie to get the variables i want.
How do i restructure my code now?
In case of not selecting REMEMBER ME:
I check to see if a SESSION is set and i use only the SESSION variables?
In case of selecting REMEMBER ME:
I check to see if a cookie is set and then retrieve the variables from COOKIE array?
If thats the case i will need to check every script to check this? Is there an easier way to configure it?
Regards,
Chris