-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
56 lines (32 loc) · 860 Bytes
/
search.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>search</title>
<link rel="stylesheet" type="text/css" href="style.css" media="all" />
</head>
<body>
<ul>
<?php
require 'fonctions.php';
$recherche = $_POST['recherche'];
if (isset($recherche)) {
$bdd = getBdd();
// Définition de la requête SQL
$reqr = "SELECT * FROM adherent WHERE nomAdh LIKE '%$recherche%'";
$resultatr = $bdd->query($reqr);
$data = $resultatr->fetchAll();
foreach ($data as $line) {
$nom = $line['nomAdh'];
$prenom = $line['prenomAdh'];
$niveau = $line['niveauAdh'];
$matricule = $line['matriculeAdh'];
echo 'Résultat de la recherche:<li> '.$matricule.', '.$nom.', '.$prenom.'<br> '.$niveau.'</li> <br/>'
;
}
}
?>
</ul>
<p class="lien"><a href="index.php">Retour à l'accueil</a></p>
</body>
</html>