I Need real time examples for session and cookies can you tell elaboratly
1307 visits
Outline:Sessions A PHP session variable is used to store information about, or change settings for a user session. Session variables hold information about one single user, and are available to all pages in one application. session_start() - Starting a PHP Session $_SESSION['variable_name']=value - Stores the value in the Session variable. session_stop() - Stopping a PHP Session
Sessions A PHP session variable is used to store information about, or change settings for a user session. Session variables hold information about one single user, and are available to all pages in one application. session_start() - Starting a PHP Session $_SESSION['variable_name']=value - Stores the value in the Session variable. session_stop() - Stopping a PHP Session
Show video info
Pre-requisite