sneskid Posted April 16, 2006 Share Posted April 16, 2006 I roughly understand sessions, just need some extra info that .I know you can use sessions through the cookies, which is probably most common. I want to avoid this and use them through POST or GET.Is there a way to grab the actual session string?Seems like most of the session is managed internally by PHP, I'm just wondering how I can impose more control. Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted April 16, 2006 Share Posted April 16, 2006 The session data is not stored in the cookie, well only the SESSID of the session is stored in the cookie, but the session data is stored on internally on the server in a specified folder, such as a folder called tmp.You cannot tell PHP to put any POST or GET data to be automatically placed into a SESSION which is not a very good way of doing things. Quote Link to comment 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.