Categories

Friday, April 19, 2024
#919814419350 therichposts@gmail.com
Php

How php session works?

How php session works

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

therichpost
the authortherichpost
Hello to all. Welcome to therichpost.com. Myself Ajay Malhotra and I am freelance full stack developer. I love coding. I know WordPress, Core php, Angularjs, Angular 14, Angular 15, Angular 16, Angular 17, Bootstrap 5, Nodejs, Laravel, Codeigniter, Shopify, Squarespace, jQuery, Google Map Api, Vuejs, Reactjs, Big commerce etc.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.