dragonusthei Posted May 31, 2006 Share Posted May 31, 2006 I made a login system that uses session ids to determin whos logged in etc but when cookies are off it just fails every single time. How do i make it so when cookies are turned off the session id is visible in there URL field and session ids are passed that way? Quote Link to comment https://forums.phpfreaks.com/topic/10855-session-id/ Share on other sites More sharing options...
wisewood Posted May 31, 2006 Share Posted May 31, 2006 <?phpsession_start();$_SESSION[sessionid] = session_id();$_SESSION[username] = "dragonusthei";echo "$_SESSION[sessionid] :: $_SESSION[username]";?> Quote Link to comment https://forums.phpfreaks.com/topic/10855-session-id/#findComment-40556 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.