8 lines
103 B
PHP
8 lines
103 B
PHP
|
<?php
|
||
|
session_start();
|
||
|
$_SESSION = array();
|
||
|
session_destroy();
|
||
|
header("location: login.php");
|
||
|
exit;
|
||
|
?>
|