Site icon T4Tutorials.com

PHP session start (Set) Destroy Update and View

PHP Session start (Set) Destroy Update and View

examples of session in php

PHP session starts, Destroy, Update, and View is the topic of discussion for today. Let’s begin with Creating the session. We need to create four files.

  1. session_set.php
  2. session_vie.php
  3. session_destroy.php
  4. session_modify.php

PHP Session set

session_set.php

<?php
session_start();
?>
<?php
$_SESSION["email"] = "a@a.com";
$_SESSION["password"] = "t4tutorials";
echo "Session variables are set.";
?>

PHP Session View

session_view.php

<?php
session_start();
?>
<?php
// Echo session variables that were set on previous page
echo "Email is " . $_SESSION["email"] . ".<br>";
echo "Password is " . $_SESSION["password"] . ".";
?>

PHP Session destroy

session_destroy.php

<?php
session_start();
?>
<?php
// this will remove all session variables
session_unset();
// this will destroy the complete session
session_destroy();
?>

PHP Session Modify

session_modify.php

<?php
session_start();
?>
<?php
// this will change a session variable
$_SESSION["email"] = "b@b.com";
print_r($_SESSION);
?>

Video Lecture

Exit mobile version