Hello to all, welcome to therichpost.com. Today, In this post, I will let you know How php session works? Sessions are very important and store unique value in it.
Sessions are used to store unique data throughout the website. when php script is closed or session will be destroy after closing browser.
Here is the working php sessions code and you need add this into your php file:
create session Code:
you can use this code into your login page.ob_start();
session_start();
$_SESSION[“USER”] = “test”;Delete session Code:
you can use this code into your logout page.ob_start();
session_start();
session_unset();
session_destroy();
There are so many codes in PHP and I will let you know all. Please do comment if you any query related to this post. Thank you. Therichpost.com
Recent Comments