This repository has been archived by the owner on Jan 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadresses.php
81 lines (71 loc) · 1.98 KB
/
adresses.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
<?php
// Connexion à la base de données
require_once('includes/db.php');
require_once('includes/fonctions.php');
// Définition titre page
$titrePage = "Liste des adresses";
// Headers html: <head> + titres
include('parties/header.php');
// Champ et direction de tri par défaut
$ordreChamp = 'nom';
$ordreDirection = 'ASC';
// Liste des champs sur lesquels on peut trier
$champsTriables= ['id', 'nom', 'cp', 'ville'];
// Test de $_GET
$ordreDeTri = testOrderBy($champsTriables, 'nom', 'ASC');
// Champ et direction de tri par défaut
$ordreChamp = $ordreDeTri[0];
$ordreDirection = $ordreDeTri[1];
$sql = "SELECT * FROM adresses ORDER BY $ordreChamp $ordreDirection";
$resultats = mysqli_query($connection, $sql);
?>
<!-- Lien vers le formulaire -->
<a href="adresses_new.php">Nouvelle adresse</a>
<table class="table table-condensed table-striped table-hover">
<thead>
<tr>
<th>
id
<a href="?order=id&direction=ASC">+</a>
<a href="?order=id&direction=DESC">-</a>
</th>
<th>
nom
<a href="?order=nom&direction=ASC">+</a>
<a href="?order=nom&direction=DESC">-</a>
</th>
<th>
cp
<a href="?order=cp&direction=ASC">+</a>
<a href="?order=cp&direction=DESC">-</a>
</th>
<th>
ville
<a href="?order=ville&direction=ASC">+</a>
<a href="?order=ville&direction=DESC">-</a>
</th>
</tr>
</thead>
<tbody>
<?php
if(mysqli_num_rows($resultats) === 0):
echo "<tr><td>Il n'y a pas d'enregistrements</td></tr>";
else:
// Affichage des lignes de résultat
while($ligne = mysqli_fetch_assoc($resultats)):
//var_dump($ligne);
?>
<tr>
<td><?= $ligne['id'] ?></td>
<td><?= $ligne['nom'] ?></td>
<td><?= $ligne['cp'] ?></td>
<td><?= $ligne['ville'] ?></td>
</tr>
<?php
endwhile;
endif;
?>
</tbody>
</table>
<?php
include ('parties/footer.php');