-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.php
36 lines (31 loc) · 924 Bytes
/
index.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
<?php
########################################################
# Sistem Informasi Stok Farmasi Versi 1.1 (Maret 2017)
# Dikembangkan untuk digunakan di SMK Farmasi Mahadhika 4
# Tidak untuk diperjualbelikan
# Dikembangkan oleh : Ucu Suryadi (oetjoe.soerjadi@gmail.com) - http://ucu.suryadi.my.id
# Hak Cipta hanya milik Allah SWT
########################################################
error_reporting(E_ALL);
ini_set('display_errors', 1);
session_start();
$now = time();
if(!isset($_SESSION['username'])){
header('location:login.php');
}else{
if($now > $_SESSION['udahan']){
session_destroy();
echo "<script>document.location='logout.php'</script>";
}else{
require('config/database.php');
require_once('config/fungsi.php');
require_once('component/com-deletion.php');
include('config/app.php');
if(!empty($_GET['report'])) {
include('report.php');
} else {
include('main.php');
}
}
}
?>