Tools, FAQ, Tutorials:
What Is a Session ID in PHP
What Is a Session ID in PHP?
✍: FYIcenter.com
A session ID is an identification string of a session. Since there might be multiple visitors coming to your Web site at the same time, the PHP engine needs to maintain multiple sessions concurrently. Session IDs are created and maintained by the PHP engine to identify sessions.
When a visitor comes to your Web site requesting the first PHP page for the first time, the PHP engine will create a new session and assign a unique session ID to this new session. The first PHP page can set some values to the session. When the same visitor clicks a hyper link requesting the second PHP page, the PHP engine will use the same session ID to find the same session created for the first page and give it to the second page. No new session will be created for the second page.
2016-10-26, 848👍, 0💬
Popular Posts:
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...
How to use the Atom Online Validator at w3.org? w3.org feed validation service is provided at http:/...
What is json.tool? Can I use it to convert a JSON string a pretty-print format? json.tool is a speci...
Where to find tutorials on the 2017 version of API Management Services at Azure Portal? Here is a li...
FYIcenter.com Online Tools: FYIcenter JSON Validator and Formatter FYIcenter JSON to XML Converter F...