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? 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]";?> Link to comment https://forums.phpfreaks.com/topic/10855-session-id/#findComment-40556 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.