11 lines
104 B
PHP
11 lines
104 B
PHP
<?php
|
|
|
|
session_start();
|
|
|
|
$_SESSION=array();
|
|
unset($_SESSION);
|
|
|
|
header('location:index.php');
|
|
exit();
|
|
|
|
?>
|