9 lines
112 B
PHP
9 lines
112 B
PHP
<?php
|
|
SESSION_START();
|
|
if(SESSION_DESTROY()){
|
|
header('Location: /login/');
|
|
}
|
|
else{
|
|
header('Location: /');
|
|
}
|
|
?>
|