-
Notifications
You must be signed in to change notification settings - Fork 8
/
logout.php
executable file
·30 lines (23 loc) · 935 Bytes
/
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
<?php
//////////////////////////////////////////////////////////////////////
// SISFO-SPPD, Sistem Informasi Surat Perintah Perjalanan Dinas. //
// Cocok untuk kantor - kantor yang membutuhkan pengarsipan surat //
// perintah tugas perjalanan dinas. //
//////////////////////////////////////////////////////////////////////
// Dikembangkan oleh : Agus Muhajir //
// E-Mail : [email protected] //
// HP/SMS/WA : 081-829-88-54 //
// source code : http://github.com/hajirodeon //
//////////////////////////////////////////////////////////////////////
session_start();
//ambil nilai
require("inc/config.php");
require("inc/fungsi.php");
nocache;
//hapus session
session_unset();
session_destroy();
//re-direct
xloc($sumber);
exit();
?>