-
Notifications
You must be signed in to change notification settings - Fork 0
/
item.php
33 lines (24 loc) · 970 Bytes
/
item.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
<?php
include('functions/my-functions.php');
include('functions/my_products.php');
include("templates/header.php");
?>
<?php
$nom = 'Loki';
$prix = '4000€';
$photo = 'assets/img/canap1.jpg';
?>
<div class="full-produit">
<img src="<?php echo $photo ?>" class="w-50 p-3 img-fluid object-fit-cover float-start" alt="photo_canapé_4">
<div class="text-produit">
<h2 class="fs-1 fw-bold mb-4"><?php echo $nom ?></h2>
<p>Bluffez vos amis avec ce produit de qualité.</p>
<div class="quantity-product">
<label for="quantity">Choisissez votre quantité </label>
<input type="number" step="1" max="" value="1" name="quantity" class="quantity-field">
</div>
<p class="fs-1"><?php echo $prix ?></p>
<button class="btn btn-outline-dark" type="submit">Ajouter au panier</button>
</div>
</div>
<?php include("templates/footer.php"); ?>