-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
57 lines (52 loc) · 1.52 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
require_once('myClass.php');
$obj=new myClass();
$data=$obj->selectData();
?>
<!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.0">
<title>ClassCrudByBarakaKinywa</title>
<link href="assets/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="mt-6">
<br><br><br>
<a href="add.php" class="btn btn-primary">Nouvel enregistrement</a>
<hr>
<table class="table table-sm table-bordered">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Noms</th>
<th scope="col">Adresse</th>
<th scope="col">Modifier</th>
<th scope="col">Supprimer</th>
</tr>
</thead>
<tbody>
<?php
$i=0;
foreach ($data as $key => $value) {
$i++;
?>
<tr>
<th scope="row"><?=$i?></th>
<td><?=$value["noms"]?></td>
<td><?=$value["adresse"]?></td>
<td><a href="edit.php?id=<?=$value["id"]?>" class="btn btn-warning">Modifier</a></td>
<td><a href="delete.php?id=<?=$value["id"]?>" class="btn btn-danger">Supprimer</a></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</body>
</html>