Jump to content

session() info


sneskid

Recommended Posts

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.
Link to comment
https://forums.phpfreaks.com/topic/7530-session-info/
Share on other sites

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.
Link to comment
https://forums.phpfreaks.com/topic/7530-session-info/#findComment-27465
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.