A session allow to store user information on the server for later use.(i.e. username,shopping cart items,etc).
However,this session information is temporary and is usually deleted very quickly after the user has left the website that uses session.
Session variable hold information about one single user, and are available to all pages in one application.
How Session Works?
Session work by creating a unique identification(UID) number for each visitor and storing variable based on this ID.
This helps to prevent two user data from getting confused with another when visiting the same webpage.
The UID is either stored in a cookie or is propagated in the URL.
Starting a PHP Session
Before you can store user information in your php session, you must first start up the session.
The session_start() function must appear before the <html> tag.
However,this session information is temporary and is usually deleted very quickly after the user has left the website that uses session.
Session variable hold information about one single user, and are available to all pages in one application.
How Session Works?
Session work by creating a unique identification(UID) number for each visitor and storing variable based on this ID.
This helps to prevent two user data from getting confused with another when visiting the same webpage.
The UID is either stored in a cookie or is propagated in the URL.
Starting a PHP Session
Before you can store user information in your php session, you must first start up the session.
The session_start() function must appear before the <html> tag.
Storing a Session Variable
The correct way to store and retrieve session variables is to use the PHP $_SESSION variable.
The correct way to store and retrieve session variables is to use the PHP $_SESSION variable.
Retrieving a Session
Output : Pageviews=1
Destroying A Session
The unset() function is used to free the specified session variable.
Destroying A Session
The unset() function is used to free the specified session variable.
You can also completely destroy the session by calling the session_destroy() function :
session_distroy() will reset your session and you will lose all your stored session data.
Tidak ada komentar:
Posting Komentar