-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
43 lines (39 loc) · 835 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
37
38
39
40
41
42
43
<?php
session_start();
include_once 'koneksi.php';
include_once 'models/User.php';
include_once 'models/Kategori.php';
include_once 'models/Inventaris.php';
include_once 'models/Departemen.php';
include_once 'models/Pegawai.php';
include_once 'models/Asal.php';
include_once 'models/Pengadaan.php';
include_once 'models/PengadaanDetail.php';
include_once 'models/Peminjaman.php';
include_once 'models/PeminjamanDetail.php';
?>
<!DOCTYPE html>
<html lang="en">
<?php
include_once 'layouts/head.php';
?>
<body>
<?php
include_once 'layouts/nav.php';
?>
<main id="main">
<?php
// error_reporting(0);
$hal = $_REQUEST['hal'];
if (!empty($hal)) {
include_once $hal . '.php';
} else {
include_once 'home.php';
}
?>
</main>
<?php
include_once 'layouts/footer.php';
?>
</body>
</html>