-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.php
188 lines (149 loc) · 7.23 KB
/
admin.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
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
<?php
session_start();
include_once "includes/config.php";
/* if(!isset($_SESSION['admin'])){
header('Location: login.php');
} */
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>EShop</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="Free HTML Templates" name="keywords">
<meta content="Free HTML Templates" name="description">
<!-- Favicon -->
<link href="img/favicon.ico" rel="icon">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<!-- Libraries Stylesheet -->
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- Topbar Start -->
<!-- Topbar End -->
<!-- Navbar Start -->
<?php
include 'includes/navbarA.php';
?>
<!-- Navbar End -->
<!-- Products Start -->
<div class="container-fluid pt-5">
<div class="text-center mb-4">
<h2 class="section-title px-5"><span class="px-2">Administration | E Boutique</span></h2>
</div>
<div class="row px-xl-5 pb-3">
<div class="col-lg-3 col-md-6 col-sm-12 pb-1">
<div class="card product-item border-0 mb-4">
<div class="card-header product-img position-relative overflow-hidden bg-transparent border p-0">
<h6 class="text-truncate mb-3 text-center">Articles</h6>
</div>
<div class="card-body border-left border-right text-center p-0 pt-4 pb-3 bg-primary">
<div class="d-flex justify-content-center">
<h6>
<?php
$articles=$db->query("SELECT COUNT(*) AS articles FROM article");
$articles = $articles->fetch();
echo $articles['articles'];
?>
</h6>
</div>
</div>
<div class="card-footer d-flex justify-content-between bg-light border">
<a href="articles.php" class="btn btn-sm text-dark p-0"><i class="fas fa-eye text-primary mr-1"></i>Accéder</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 pb-1">
<div class="card product-item border-0 mb-4">
<div class="card-header product-img position-relative overflow-hidden bg-transparent border p-0">
<h6 class="text-truncate mb-3 text-center">Categories</h6>
</div>
<div class="card-body border-left border-right text-center p-0 pt-4 pb-3 bg-primary">
<div class="d-flex justify-content-center">
<h6>
<?php
$categories=$db->query("SELECT COUNT(*) AS categories FROM categorie");
$categories = $categories->fetch();
echo $categories['categories'];
?>
</h6>
</div>
</div>
<div class="card-footer d-flex justify-content-between bg-light border">
<a href="categories.php" class="btn btn-sm text-dark p-0"><i class="fas fa-eye text-primary mr-1"></i>Accéder</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 pb-1">
<div class="card product-item border-0 mb-4">
<div class="card-header product-img position-relative overflow-hidden bg-transparent border p-0">
<h6 class="text-truncate mb-3 text-center">Clients</h6>
</div>
<div class="card-body border-left border-right text-center p-0 pt-4 pb-3 bg-primary">
<div class="d-flex justify-content-center">
<h6>
<?php
$clients=$db->query("SELECT COUNT(*) AS clients FROM internaute");
$clients = $clients->fetch();
echo $clients['clients'];
?>
</h6>
</div>
</div>
<div class="card-footer d-flex justify-content-between bg-light border">
<a href="clients.php" class="btn btn-sm text-dark p-0"><i class="fas fa-eye text-primary mr-1"></i>Accéder</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12 pb-1">
<div class="card product-item border-0 mb-4">
<div class="card-header product-img position-relative overflow-hidden bg-transparent border p-0">
<h6 class="text-truncate mb-3 text-center">Sites</h6>
</div>
<div class="card-body border-left border-right text-center p-0 pt-4 pb-3 bg-primary">
<div class="d-flex justify-content-center">
<h6>
<?php
$sites=$db->query("SELECT COUNT(*) AS sites FROM site");
$sites = $sites->fetch();
echo $sites['sites'];
?>
</h6>
</div>
</div>
<div class="card-footer d-flex justify-content-between bg-light border">
<a href="sites.php" class="btn btn-sm text-dark p-0"><i class="fas fa-eye text-primary mr-1"></i>Accéder</a>
</div>
</div>
</div>
</div>
</div>
<!-- Products End -->
<!-- Products Start -->
<!-- Products End -->
<!-- Footer Start -->
<?php
include 'includes/footerA.php';
?>
<!-- Footer End -->
<!-- Back to Top -->
<a href="#" class="btn btn-primary back-to-top"><i class="fa fa-angle-double-up"></i></a>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<!-- Contact Javascript File -->
<script src="mail/jqBootstrapValidation.min.js"></script>
<script src="mail/contact.js"></script>
<!-- Template Javascript -->
<script src="js/main.js"></script>
</body>
</html>