-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathlogout.php
executable file
·39 lines (32 loc) · 1.51 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
35
36
37
38
39
<?php
///////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////
/////// SISFOSURAT v1.0 ///////
/////// Sistem Informasi Surat - Menyurat ///////
///////////////////////////////////////////////////////////////////////
/////// Dibuat oleh : ///////
/////// Agus Muhajir, S.Kom ///////
/////// URL : ///////
/////// * http://omahbiasawae.com/ ///////
/////// * http://sisfokol.wordpress.com/ ///////
/////// * http://hajirodeon.wordpress.com/ ///////
/////// * http://yahoogroup.com/groups/sisfokol/ ///////
/////// * http://yahoogroup.com/groups/linuxbiasawae/ ///////
/////// E-Mail : ///////
/////// * [email protected] ///////
/////// * [email protected] ///////
/////// HP/SMS/WA : 081-829-88-54 ///////
///////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////
session_start();
//ambil nilai
require("inc/config.php");
require("inc/fungsi.php");
nocache;
//hapus session
session_unset();
session_destroy();
//re-direct
xloc($sumber);
exit();
?>