Copy link to clipboard
Copied
I accidently posted this in the plain Dreamweaver forum.. forgive me. I'm looking for a way to enhance the current DW CS5 PHP login authorization scripting to be a "remember me" feature as well... pointers!?
Copy link to clipboard
Copied
So you are looking at how to implement cookies. This tutorial should give you a basic overview.
http://www.tizag.com/phpT/phpcookies.php
If you are farther along than that and need specific help with your system, we may need to see the code you have.
Copy link to clipboard
Copied
I don't know of any extensions, but here's how I did it many moons ago. For each user account, in addition to the login credentials I also create a random passkey. If they user selects the "Remember Me" checkbox, I store the user login and passkey cookies. When the user accesses a restricted page, I check if those cookies are set and if so, I compare the database passkey to the cookie value. I felt that was safer than merely checking a "remember me" boolean value. Maybe this is overkill but it felt safer to me. I also do not want to store the users regular password in a cookie.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now