-
Notifications
You must be signed in to change notification settings - Fork 1
/
logout.php
executable file
·34 lines (27 loc) · 1.11 KB
/
logout.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
////////////////////////////////////////////////////////////
// SMS BIASAWAE v0.1 //
// oleh : Agus Muhajir //
////////////////////////////////////////////////////////////
// blog/situs/milist : //
// http://hajirodeon.wordpress.com/ //
// http://sisfokol.wordpress.com/ //
// http://yahoogroup.com/groups/sisfokol/ //
// http://yahoogroup.com/groups/linuxbiasawae/ //
////////////////////////////////////////////////////////////
// e-mail : //
// hajirodeon@yahoo.com //
////////////////////////////////////////////////////////////
// hp/sms : //
// 081-829-88-54 //
////////////////////////////////////////////////////////////
//require
require("inc/config.php");
require("inc/fungsi.php");
//habisi session
session_unset();
//re-direct
$ke = "index.php";
xloc($ke);
exit();
?>