11 lines
No EOL
138 B
PHP
11 lines
No EOL
138 B
PHP
<?php
|
|
|
|
// Start the session
|
|
session_start();
|
|
|
|
// Unset all session variables
|
|
$_SESSION = [];
|
|
|
|
// Destroy the session
|
|
session_destroy();
|
|
?>
|