-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.php
124 lines (80 loc) · 2.85 KB
/
dashboard.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
<?php
include './connect.php';
include './components/header.php';
?>
<!--Tableau de bord-->
<div class="dashboard-container">
<h3>Liste des produits</h3>
<h4><a href="./create_product.php">Creer Un Produit</a></h4>
<table>
<thead>
<tr>
<th>Image</th>
<th>Nom</th>
<th>Prix</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<?php
$result = mysqli_query($connection, "Select * from `produits`");
if ($result) {
while ($row = mysqli_fetch_assoc($result)) {
echo ' <tr style="background-color: lightgray;">
<td>
<img src=' . 'imagedoc/' . $row['image1'] . ' class="dashboard-img" alt="">
</td>
<td>' . $row['nom'] . '</td>
<td>' . $row['prix'] . ' FCFA</td>
<td class="dashboard-action">
<a href="update.php?edit=' . $row['id_produit'] . '">
<i class="fa-regular fa-pen-to-square"></i>
</a>
<a href="delete.php?delete= ' . $row['id_produit'] . '" onclick="return confirm(\'etes vous sures?\');" >
<i class="fa-solid fa-trash"></i>
</a>
</td>
</tr>';
}
}
?>
</tbody>
</table>
</div>
<div class="dashboard-container">
<h3>Liste des Categories</h3>
<h4><a href="./cathegorie/create.php">Creer Une Categorie</a></h4>
<table>
<thead>
<tr>
<th>Nom</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<?php
$categorie_result = mysqli_query($connection, "Select * from `categorie`");
if ($categorie_result) {
while ($categorie_row = mysqli_fetch_assoc($categorie_result)) {
echo ' <tr style="background-color: lightgray;">
<td>' . $categorie_row['nom'] . '</td>
<td class="dashboard-action">
<a href="./cathegorie/update.php?categorie_edit=' . $categorie_row['id_categorie'] . '">
<i class="fa-regular fa-pen-to-square"></i>
</a>
<a href="./cathegorie/delete.php?categorie_delete= ' . $categorie_row['id_categorie'] . '" onclick="return confirm(\'etes vous sures?\');">
<i class="fa-solid fa-trash"></i>
</a>
</td>
</tr> ';
}
}
?>
</tbody>
</table>
<!--CATHEGORIE-->
</div>
<!--FOOTER-->
<?php include './components/footer.php'; ?>
</body>
</html>