0% found this document useful (0 votes)
31 views2 pages

PHP Session

PHP sessions allow storing and passing temporary information between pages, session_start() starts a session, session_destroy() ends it, and $_SESSION[] variables hold session data.

Uploaded by

Rajan Neupane
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views2 pages

PHP Session

PHP sessions allow storing and passing temporary information between pages, session_start() starts a session, session_destroy() ends it, and $_SESSION[] variables hold session data.

Uploaded by

Rajan Neupane
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

PHP- Session

• PHP session is used to store and pass


information from one page to another
temporarily.
session_start(); - Starts Session
session_destroy(); - destroys Session

$_SESSION[" "] - session variable

You might also like