-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathliste_test.php
42 lines (34 loc) · 894 Bytes
/
liste_test.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
<?php include("entete.php");
/*
$requete = "SELECT DISTINCT categorie FROM histoire";
$resultat = $BDD -> query($requete);
$n = $resultat -> rowCount();
$tab = $resultat->fetchAll();
*/
$tab = ["Action", "Horreur", "Romantique"];
?>
<div class="category-container text-center " >
<div class="category-cards carousel" id="cards">
<?php
if ($_SESSION["connected"]){
foreach ($tab as $key) {
?>
<div class="category-cards-item bg-danger">
<h1> <?= $key?></h1>
</div>
<?php
}} ?>
<!--
<div class="category-cards-item bg-primary">
<h1>BYE</h1>
</div>
<div class="category-cards-item bg-info">
<h1>Hi again</h1>
</div>
-->
</div>
</div>
<div class="container">
<button onclick="carousel()"> Click me ! </button>
</div>
<?php include("footer.php") ?>