Answers for "show session and then destroy"

PHP
1

session_destroy not working

//After using session_destroy(), the session is destroyed behind the scenes. For some reason this doesn't affect the values in $_SESSION, which was already populated for this request, but it will be empty in future requests.

//You can manually clear $_SESSION if you so desire ($_SESSION = [];).
 <?php
 $_SESSION = [];
 session_unset();
 session_destroy();
?>
Posted by: Guest on November-07-2020
6

destroy session php

<?php 
 session_start(); // start session
 session_destroy();  // Delete whole session
// OR
unset($_SESSION['username']); // delete any specific session only
?>
Posted by: Guest on June-15-2020

Browse Popular Code Answers by Language