This repository was archived by the owner on Dec 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
214 lines (187 loc) · 8.38 KB
/
Copy pathindex.php
File metadata and controls
214 lines (187 loc) · 8.38 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<?php
require_once 'config/start.php';
if (!isset($_SESSION["no_account"]) && !isset($_SESSION["name"]) && !isset($_SESSION["role"])) {
header("Location: login.php");
exit;
}
$check_members = mysqli_query($connect, "SELECT * FROM members");
$get_members = mysqli_num_rows($check_members);
$check_dvd = mysqli_query($connect, "SELECT * FROM dvd_film");
$get_dvd = mysqli_num_rows($check_dvd);
$check_peminjaman = mysqli_query($connect, "SELECT * FROM meminjam");
$get_peminjaman = mysqli_num_rows($check_peminjaman);
$check_pengembalian = mysqli_query($connect, "SELECT * FROM meminjam WHERE waktu_pengembalian IS NOT NULL");
$get_pengembalian = mysqli_num_rows($check_pengembalian);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="<?= description; ?>">
<meta name="keywords" content="<?= keywords; ?>" />
<meta name="author" content="<?= author; ?>">
<title>Dashboard | <?= title; ?></title>
<link href="assets/img/simindi.png" rel="icon" type="image/png" />
<!-- Custom fonts for this template-->
<link href="<?= $base_url; ?>/vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet" />
<!-- Custom styles for this template-->
<link href="<?= $base_url; ?>/assets/css/sb-admin-2.css" rel="stylesheet">
</head>
<body id="page-top">
<!-- Page Wrapper -->
<div id="wrapper">
<!-- Sidebar -->
<?php include_once $_SERVER["DOCUMENT_ROOT"] . "/assets/inc/sidebar.inc"; ?>
<!-- End of Sidebar -->
<!-- Content Wrapper -->
<div id="content-wrapper" class="d-flex flex-column">
<!-- Main Content -->
<div id="content">
<!-- Navbar -->
<?php include_once $_SERVER["DOCUMENT_ROOT"] . "/assets/inc/navbar.inc"; ?>
<!-- End of Navbar -->
<!-- Begin Page Content -->
<div class="container-fluid">
<!-- Page Heading -->
<div class="d-sm-flex align-items-center justify-content-between mb-4">
<h1 class="h3 mb-0 text-gray-800">Dashboard</h1>
</div>
<!-- Content Row -->
<div class="row">
<!-- Earnings (Monthly) Card Example -->
<div class="col-xl-3 col-md-6 mb-4">
<div class="card border-left-info shadow h-100 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="text-xs font-weight-bold text-info text-uppercase mb-1">DVD Film</div>
<div class="h5 mb-0 font-weight-bold text-gray-800">
<?= $get_dvd; ?> Film
</div>
</div>
<div class="col-auto">
<i class="fas fa-fw fa-compact-disc fa-2x text-gray-300"></i>
</div>
</div>
</div>
</div>
</div>
<!-- Earnings (Monthly) Card Example -->
<div class="col-xl-3 col-md-6 mb-4">
<div class="card border-left-warning shadow h-100 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="text-xs font-weight-bold text-warning text-uppercase mb-1">Members</div>
<div class="h5 mb-0 font-weight-bold text-gray-800">
<?= $get_members; ?> People
</div>
</div>
<div class="col-auto">
<i class="fas fa-users fa-2x text-gray-300"></i>
</div>
</div>
</div>
</div>
</div>
<!-- Earnings (Monthly) Card Example -->
<div class="col-xl-3 col-md-6 mb-4">
<div class="card border-left-primary shadow h-100 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="text-xs font-weight-bold text-primary text-uppercase mb-1">Peminjaman</div>
<div class="h5 mb-0 font-weight-bold text-gray-800">
<?= $get_peminjaman; ?> Disk
</div>
</div>
<div class="col-auto">
<i class="fas fa-sign-out-alt fa-2x text-gray-300"></i>
</div>
</div>
</div>
</div>
</div>
<!-- Pending Requests Card Example -->
<div class="col-xl-3 col-md-6 mb-4">
<div class="card border-left-danger shadow h-100 py-2">
<div class="card-body">
<div class="row no-gutters align-items-center">
<div class="col mr-2">
<div class="text-xs font-weight-bold text-danger text-uppercase mb-1">Pengembalian</div>
<div class="h5 mb-0 font-weight-bold text-gray-800">
<?= $get_pengembalian; ?> Disk
</div>
</div>
<div class="col-auto">
<i class="fas fa-sign-in-alt fa-2x text-gray-300"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="card shadow mb-4">
<div class="card-header py-3">
<i class="fas fa-table"></i>
Top Recent Update
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
<thead>
<tr>
<th style="width: 5%">No</th>
<th>Judul</th>
<th>Genre</th>
<th>Release Date</th>
</tr>
</thead>
<tbody>
<?php
$i = 1;
$get_dvd_film = show("SELECT * FROM dvd_film ORDER BY waktu_menambahkan DESC LIMIT 5");
foreach ($get_dvd_film as $dvd_film) :
?>
<tr>
<td><?= $i; ?></td>
<td><?= $dvd_film["judul"]; ?></td>
<td><?= $dvd_film["genre"]; ?></td>
<td><?= $dvd_film["release_date"]; ?></td>
</tr>
<?php
$i++;
endforeach;
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /.container-fluid -->
</div>
<!-- End of Main Content -->
<!-- Footer -->
<?php include_once $_SERVER["DOCUMENT_ROOT"] . "/assets/inc/footer.inc"; ?>
<!-- End of Footer -->
</div>
<!-- End of Content Wrapper -->
</div>
<!-- End of Page Wrapper -->
<!-- Bootstrap core JavaScript-->
<script src="<?= $base_url; ?>/vendor/jquery/jquery.js"></script>
<script src="<?= $base_url; ?>/vendor/bootstrap/js/bootstrap.bundle.js"></script>
<!-- Core plugin JavaScript-->
<script src="<?= $base_url; ?>/vendor/jquery-easing/jquery.easing.js"></script>
<!-- Custom scripts for all pages-->
<script src="<?= $base_url; ?>/assets/js/sb-admin-2.js"></script>
</body>
</html>