9 lines
195 B
PHP
9 lines
195 B
PHP
<?php
|
|
session_start();
|
|
session_destroy();
|
|
// header('location:login.php');
|
|
?>
|
|
<script type="text/javascript">
|
|
alert('Selamat anda berhasil Logout.');
|
|
location.href = "login.php"
|
|
</script>
|