9 lines
130 B
PHP
9 lines
130 B
PHP
<?php
|
|
|
|
session_name('mastostartadmin');
|
|
session_start();
|
|
$_SESSION=array();
|
|
session_destroy();
|
|
header('Location: index.php');
|
|
|
|
?>
|