Answers for "how to set the session"

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 "how to set the session"

Browse Popular Code Answers by Language