blira Posted October 28, 2007 Share Posted October 28, 2007 Hi all. Here is my problem: Page: login.php $cookie_data=$user."-".$pass."-".$role; if(setcookie ("FLEISCHMANN_ADMIN",$cookie_data, $time+3600)==TRUE) ... //Note $user, $pass, $role DO have data Page: logged.php (once the login succeeds) $cook = explode("-", $_COOKIE['FLEISCHMANN_ADMIN']); $namecookie = $cook[0]; $passcookie = $cook[1]; $rolecookie = $cook[2]; Notes: 1. All this code is written before HTML (in both pages). 2. When I open the cookie file, it DOES contain the data I'm trying to explode. 3. $cook is empty and no cookie data is read. Thanks for any help Bernardo Quote Link to comment https://forums.phpfreaks.com/topic/75152-problem-with-cookies/ Share on other sites More sharing options...
cooldude832 Posted October 28, 2007 Share Posted October 28, 2007 storing a password/username in a cookie = a no no. Store only the userID and a time Quote Link to comment https://forums.phpfreaks.com/topic/75152-problem-with-cookies/#findComment-380079 Share on other sites More sharing options...
blira Posted October 29, 2007 Author Share Posted October 29, 2007 storing a password/username in a cookie = a no no. Store only the userID and a time Yes, I agree. I was only testing. My problem is that no cookie info can be retrieved in the next (logged.php) page. Quote Link to comment https://forums.phpfreaks.com/topic/75152-problem-with-cookies/#findComment-380089 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.