Saturday 21 May 2016

Week 12

What is a PHP Session?

When you work with an application, you open it, do some changes, and then you close it. This is much like a Session. The computer knows who you are. It knows when you start the application and when you end. But on the internet there is one problem: the web server does not know who you are or what you do, because the HTTP address doesn't maintain state.
Session variables solve this problem by storing user information to be used across multiple pages (e.g. username, favorite color, etc). By default, session variables last until the user closes the browser.
So, Session variables hold information about one single user, and are available to all pages in one application.

To start a session and to track session variables across user session:  
session_start();

To register a session: 
session_register(variables);

To destroy a session:
session_destroy();


Lab class was cancelled as we were asked to join the event organized on SMMTC week.
 

No comments:

Post a Comment