-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
54 lines (54 loc) · 2.51 KB
/
home.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
44
45
46
47
48
49
50
51
52
53
54
<h1 class="mt-4">Dashboard</h1>
<ol class="breadcrumb mb-4">
<li class="breadcrumb-item active">Dashboard</li>
</ol>
<div class="row">
<div class="col-xl-3 col-md-6">
<div class="card bg-primary text-white mb-4">
<?php
$total_user = mysqli_num_rows(mysqli_query($connection, "SELECT * FROM user"));
?>
<div class="card-body">Total User = <?php echo $total_user?></div>
<div class="card-footer d-flex align-items-center justify-content-between">
<a class="small text-white stretched-link" href="#">View Details</a>
<div class="small text-white"><i class="fas fa-angle-right"></i></div>
</div>
</div>
</div>
<div class="col-xl-3 col-md-6">
<div class="card bg-warning text-white mb-4">
<?php
$total_book = mysqli_num_rows(mysqli_query($connection, "SELECT * FROM book"));
?>
<div class="card-body">Total Buku = <?php echo $total_book?></div>
<div class="card-footer d-flex align-items-center justify-content-between">
<a class="small text-white stretched-link" href="#">View Details</a>
<div class="small text-white"><i class="fas fa-angle-right"></i></div>
</div>
</div>
</div>
<div class="col-xl-3 col-md-6">
<div class="card bg-success text-white mb-4">
<?php
$total_category = mysqli_num_rows(mysqli_query($connection, "SELECT * FROM category"));
?>
<div class="card-body">Total Category = <?php echo $total_category?></div>
<div class="card-footer d-flex align-items-center justify-content-between">
<a class="small text-white stretched-link" href="#">View Details</a>
<div class="small text-white"><i class="fas fa-angle-right"></i></div>
</div>
</div>
</div>
<div class="col-xl-3 col-md-6">
<div class="card bg-danger text-white mb-4">
<?php
$total_review = mysqli_num_rows(mysqli_query($connection, "SELECT * FROM review"));
?>
<div class="card-body">Total = <?php echo $total_review?></div>
<div class="card-footer d-flex align-items-center justify-content-between">
<a class="small text-white stretched-link" href="#">View Details</a>
<div class="small text-white"><i class="fas fa-angle-right"></i></div>
</div>
</div>
</div>
</div>