Answers for "do i need to destroy session from server in php"

PHP
5

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

Code answers related to "do i need to destroy session from server in php"

Browse Popular Code Answers by Language