-
Notifications
You must be signed in to change notification settings - Fork 1
/
Listederoulante.php
35 lines (25 loc) · 1.09 KB
/
Listederoulante.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
<?php require 'header/header.php'; ?>
<h1>La liste deroulante</h1>
<form method="GET" action="Panier.php">
<?php
require 'connection.php';
$sql = 'SELECT * FROM produit WHERE code_de_la_categorie="'.$_REQUEST["code"].'"' ;
$table = $connection->query($sql);
while ($ligne = $table->fetch()) {
?>
<form method="GET" action="Panier.php">
<?php
echo "<br/><td><img src=\"IMG/".$ligne["photo"].".jpg\" alt=\"Photo Innexistante\">"."<br/>";
echo "Référence: ".$ligne["reference"]."<br/>";
echo "Nom: ".$ligne["designation"]."<br/>";
echo "Prix: ".$ligne["prix"]."€<br/>";
echo "Quantité: ".$ligne["quantite_en_stock"]."<br/>";
echo '<a href="addbag.php?ref='.$ligne['reference'].'" class="btn btn-success">Ajouter au panier</a>';
?>
<br/>
<?php
}
?>
</form>
<button class="btn">Retour</button>
<?php require 'footer.html'; ?>