8 lines
173 B
PHP
8 lines
173 B
PHP
<?php
|
|
session_start();
|
|
unset($_SESSION['username']);
|
|
unset($_SESSION['hak_akses']);
|
|
session_destroy();
|
|
// header("Location:/user/index.php");
|
|
header("location: /home.php");
|