PDA

View Full Version : How to initiate a session in PHP?



seo.gops
09-05-2021, 02:05 PM
How to initiate a session in PHP?

kajalescort
09-05-2021, 04:57 PM
To begin a new session, simply call the PHP session_start() function. It will create a new session and generate a unique session ID for the user. The PHP code in the example below simply starts a new session.

Cyril30
09-06-2021, 12:02 AM
A PHP session is easily started by making a call to the session_start() function. This function first checks if a session is already started and if none is started then it starts one. It is recommended to put the call to session_start() at the beginning of the page.