-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpanier.php
153 lines (143 loc) · 7.15 KB
/
panier.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php session_start();
// foreach ($_SESSION['selection'] as $selectId => $valeur) {
// echo $selectId.' => '.$valeur." ";
// }
$email = $_SESSION['email'];
?>
<html>
<head>
<title>Panier</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="fit-picture"><img src="/image/web_logo.png" height="200px"/></div>
</header>
<div class="menu2">
<br><br>
<button type=""><a href="rechercheProduitsGenerique.php">Retour à l'acceuil</a></button>
</div>
<Fieldset>
<img src="/image/panier.png" height=35px/>
<br><br>
<?php
$sql = "SELECT * FROM produits;";
$dsn = 'mysql:host=mysql.etu.umontpellier.fr;dbname=e20210011437;charset=UTF8';
$username = 'e20210011437';
$password = 'sunying';
$dbh = new PDO($dsn, $username, $password) or die("Pb de connexion !");
$sth = $dbh->prepare($sql);
$sth->execute();
$result = $sth->fetchAll();
echo "<div>Utilisateur : ".$email."</div>";
?>
<form action="panier.php" method="get">
<?php
if (isset($_GET['commander'])) {
foreach ($_GET as $selectId => $valeur) {
// echo $selectId.' => '.$valeur." ";
$_SESSION['selection'][$selectId] = $valeur;
}
}
foreach ($result as $enr) {
if ($_SESSION['selection'][$enr['numProduit']] > 0) {
echo '<div class="align_left">';
echo '<input type="number" name="'.$enr['numProduit'].'" min="0" value="'.$_SESSION['selection'][$enr['numProduit']].'">';
echo "<p class='oneline_res'>".$enr['numProduit'].$enr['nom']." (".$enr['catégorie'].") de marque ".$enr['marque']." : ".$enr['prix']." euros </p>";
echo '</div>';
}
}
?>
<br>
<div>
<button type="submit" name="commander">Commander</button>
</div>
</form>
<?php
if (isset($_GET['commander'])) {
foreach ($_GET as $selectId => $valeur) {
// echo $selectId.' => '.$valeur." ";
$_SESSION['selection'][$selectId] = $valeur;
}
$selected = false;
foreach ($_SESSION['selection'] as $selectId => $valeur) {
if ($valeur > 0) {
$selected = true;
break;
}
}
if ($selected) {
$nbCommandeSql = "SELECT COUNT(*) as nb FROM commandes;";
$sth4 = $dbh->prepare($nbCommandeSql);
$sth4->execute();
$nbCommande = $sth4->fetchAll();
// print_r($nbCommande);
// echo "<br>";
// echo $nbCommande[0]['nb'];
$idCommande = $nbCommande[0]['nb'] + 1;
// echo "<br>";
// echo $idCommande;
// echo "<br>";
$_SESSION['idCommande'] = $idCommande;
$today = date("Ymd");
$_SESSION['calendrier'] = $today;
if ($email) {
// créer une nouvelle commande
$newCommande = "INSERT INTO commandes VALUES (".$idCommande.",".$today.",'".$email."');";
// echo $newCommande;
$dbh->query($newCommande);
// créer les nouvelle lignes de commande
$idLC = 0;
foreach ($result as $enr) {
if ($_SESSION['selection'][$enr['numProduit']] > 0) {
$idLC = $idLC+1;
$quantite = $_SESSION['selection'][$enr['numProduit']];
$montant = $quantite * $enr['prix'];
$newLigneCommande = "INSERT INTO lignescommandes VALUES (".$idLC.",".$idCommande.",".$enr['numProduit'].",".$quantite.",".$montant.");";
$dbh->query($newLigneCommande);
}
}
// afficher les détails de commande et ligne de commande
echo "Commander avec succès !";
echo "<br>";
echo "Voici les détails de votre commande : ";
echo "<br>";
echo "Utilisateur : ".$email;
echo "<br>";
echo "Date de commande : ".$today;
echo "<br>";
echo "Référence de commande : ".$idCommande;
echo "<br>";
$ligneCommandeSql = "SELECT * FROM lignescommandes WHERE idCommande = ".$idCommande.";";
$sth2 = $dbh->prepare($ligneCommandeSql);
$sth2->execute();
$ligneCommande = $sth2->fetchAll();
$montantTotal = 0;
foreach ($ligneCommande as $lc) {
$produitSql = "SELECT * FROM produits WHERE numProduit = ".$lc['idProduit'].";";
// echo $produitSql;
$sth3 = $dbh->prepare($produitSql);
$sth3->execute();
$produit = $sth3->fetchAll();
echo "Nom produit : ".$produit[0]['nom'].", Quantité : ".$lc['quantité'].", Montant : ".$lc['montant'].".";
echo "<br>";
$montantTotal += $lc['montant'];
}
echo "Montant Total : ".$montantTotal;
unset($_SESSION['idCommande']);
unset($_SESSION['calendrier']);
foreach ($result as $enr) {
$_SESSION['selection'][$enr['numProduit']] = 0;
}
} else {
header('location:connexion.php');
}
} else {
echo "Vous n'avez pas de selection.";
}
}
?>
</fieldset>
</body>
</html>