Unlock the Power of Open Source! The " Linux New " SWAYAM Plus Course is live now and about 2,500 learners have already registered for it.

If you are a registered learner, the forum page is now active. Visit the page and get all your questions answered.

Sessions - Telugu

2045 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