-
Notifications
You must be signed in to change notification settings - Fork 1
/
jeux.php
52 lines (47 loc) · 1.48 KB
/
jeux.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
<?php
try { $bdd= new PDO('mysql:host=localhost;dbname=jeux_video', 'root','rootmysql');
}
catch(Exception $e){
echo 'Erreur de connexion à la base de données';
echo $e->getMessage();
}
$reponses = $bdd->query('SELECT * FROM jeux_video');
$donnees = $reponses->fetchAll(PDO::FETCH_ASSOC);
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Exercices </title>
</head>
<body>
<table border="1" >
<tr>
<th> id </th>
<th> Nom du jeu </th>
<th> Possesseur </th>
<th> Console </th>
<th> Prix </th>
<th> Nombre de joueurs </th>
<th> Action <th>
</tr>
<?php for ($i=0; $i< count($donnees); $i++) : ?>
<tr>
<td><?= $donnees[$i]["ID"] ?> </td>
<td><?= $donnees[$i]["nom"] ?> </td>
<td> <?= $donnees[$i]["possesseur"] ?></td>
<td><?= $donnees[$i]["console"] ?>PC</td>
<td><?= $donnees[$i]["prix"] ?></td>
<td><?= $donnees[$i]["nbre_joueurs_max"] ?></td>
<td>
<a href="traitement.php?action=edit&id=<?= $donnees[$i]['ID'] ?>">Modifier</a> |
<a href="traitement.php?action=del&id=<?= $donnees[$i]['ID'] ?>">Supprimer</a>
</td>
</tr>
<?php endfor; ?>
</table>
</body>
</html>
<>