get data session php code example
Example 1: destroy session php
<?php
session_start(); // start session
session_destroy(); // Delete whole session
// OR
unset($_SESSION['username']); // delete any specific session only
?>
Example 2: echo session
print_r($_SESSION);