bonjour, j'ai un problème avec un panier d'achat trouvé sur ce site que je suis en train de modifier pour obtenir un calcul du poids total des commandes.
le poids ne s'affiche pas dans le panier (la valeur reste toujours à 0)je comprends pas pourquoi.
désolé pour la longueur des bouts de code:
pour commencer un exemple de lien dont partent les infos vers le panier
ici le poids c'est w=350 (en grammes)
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2 <a href="http://www.mars2540.com/panierwb/panier.php?action=ajout&l=Carnet de Mission / Pointe des Poulains&q=1&p=16&w=350" onclick="window.open(this.href, '', 'toolbar=no, location=no, directories=no, status=yes, scrollbars=yes, resizable=yes, copyhistory=no, width=600, height=400'); return false;"><img src="https://www.paypal.com/fr_FR/FR/i/btn/btn_cart_SM.gif" border="0"/></a>
ensuite le code du fichier panier.php
pour finir, le code de fonctionspanier.php
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183 <?php session_start(); include_once("fonctions-panier.php"); if (isset($_GET['action'])) { $erreur=false; if(in_array( $_GET['action'],array('ajout', 'suppression', 'refresh'))) $action = $_GET['action']; else $erreur=true; $l = preg_replace('#\v#', '', $_GET['l']); $q = intval($_GET['q']); $p = floatval($_GET['p']); $w = intval($_GET['w']); } elseif(isset($_POST['action'])) { unset($_GET); $erreur=false; if(in_array($_POST['action'],array('ajout', 'suppression', 'refresh'))) $action=$_POST['action']; else $erreur=true; $l = preg_replace('#\v#', '',$_POST['l']); $p = floatval($_POST['p']); $w = intval($_POST['w']); $QteArticle = array(); $i=0; foreach ($_POST['QteArticle'] as $contenu){ $QteArticle[$i++] = intval($contenu); } } if ($erreur==false){ switch($action){ Case "ajout": ajouterArticle($l,$q,$p,$w); break; Case "suppression": supprimerArticle($l); break; Case "refresh" : for ($i = 0 ; $i < count($QteArticle) ; $i++) { modifierQTeArticle($_SESSION['panier']['libelleProduit'][$i],round($QteArticle[$i])); } break; Default: break; } } echo '<?xml version="1.0" encoding="iso-8859-1"?>';?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr"> <head> <link href="panierwb.css" rel="stylesheet" type="text/css" /> <title>Votre panier</title> </head> <body> <div id="entetediv"> <p class="entetep">Panier d'Achat Éditions DOUBLEVÉBÉ RÉCUP</p> <a href="http://www.wbrecup.com">www.wbrecup.com</a> </div> <div id="panierdiv"> <form method="post" action="panier.php"> <table cellpadding="0" cellspacing="0"> <tr id="trpanier"> <td colspan="5">Votre panier</td > </tr> <tr id="trpaniercols"> <td width="240" align="left">Libellé</td> <td width="80" align="center">Quantité</td> <td width="90" align="center">Prix Unitaire</td> <td width="90" align="center">Poids</td> <td width="80" align="center">Action</td> </tr> <?php if (creationPanier()) { $nbArticles=count($_SESSION['panier']['libelleProduit']); if ($nbArticles <= 0) echo "<tr><td>Votre panier est vide </ td></tr>"; else { for ($i=0 ;$i < $nbArticles ; $i++) { echo "<tr>"; echo "<td>".htmlspecialchars($_SESSION['panier']['libelleProduit'][$i])."</ td>"; echo "<td><input type=\"text\" size=\"4\" name=\"QteArticle[]\" value=\"".htmlspecialchars($_SESSION['panier']['qteProduit'][$i])."\"/></td>"; echo "<td>".htmlspecialchars($_SESSION['panier']['prixProduit'][$i])." €</td>"; echo "<td>".htmlspecialchars($_SESSION['panier']['poidsProduit'][$i])." g</td>"; echo "<td><a href=\"".htmlspecialchars("panier.php?action=suppression&l=".rawurlencode($_SESSION['panier']['libelleProduit'][$i]))."\">supprimer</a></td>"; echo "</tr>"; } echo "<tr><td colspan=\"2\"> </td>"; echo "<td>"; echo "Total : ".MontantGlobal(); echo " €"; echo "</td>"; echo "<td colspan=\"2\">"; echo "Poids Total : ".PoidsGlobal(); echo " g"; echo "</td></tr>"; echo "<tr><td colspan=\"2\"> </td>"; echo "<td colspan=\"3\">"; echo "Total avec frais de port : ".MontantGlobalAvecPort(); echo " €"; echo "</td></tr>"; echo "<tr><td colspan=\"5\">"; echo "<input type=\"submit\" value=\"Rafraichir\"/>"; echo "<input type=\"hidden\" name=\"action\" value=\"refresh\"/>"; echo "</td></tr>"; } } ?> </table> <div id="borderbas"> </div> </form> <?php $Ip=@$REMOTE_ADDR; $Date=date('d m Y H:i'); echo "<form target=\"paypal\" action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\">"; echo "<input type=\"hidden\" name=\"add\" value=\"1\">"; echo "<input type=\"hidden\" name=\"cmd\" value=\"_cart\">"; echo "<input type=\"hidden\" name=\"business\" value=\"franck@wbrecup.com\">"; echo "<input type=\"hidden\" name=\"item_name\" value=\"Commande du".$Date; echo "\">"; echo "<input type=\"hidden\" name=\"amount\" value=\"".MontantGlobalAvecPort(); echo "\">"; echo "<input type=\"hidden\" name=\"no_shipping\" value=\"0\">"; echo "<input type=\"hidden\" name=\"no_note\" value=\"1\">"; echo "<input type=\"hidden\" name=\"currency_code\" value=\"EUR\">"; echo "<input type=\"hidden\" name=\"weight\" value=\"".PoidsGlobal(); echo "\">"; echo "<input type=\"hidden\" name=\"weight_unit\" value=\"kgs\">"; echo "<input type=\"hidden\" name=\"lc\" value=\"FR\">"; echo "<input type=\"hidden\" name=\"bn\" value=\"PP-ShopCartBF\">"; echo "<input type=\"submit\" value=\"Payer par Paypal\"/>"; echo "</form>"; ?> </div> </body> </html>
Je suis un peu débutant donc je ne comprends pas tout à ce tuto, j'ai rentré des occurences de w et $w et de $_SESSION['panier']['poidsProduit'][$i] là ou elle semblaient nécessaires... mais y a un truc que j'ai pas du bien faire ou oublier.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
154
155
156
157
158
159
160
161
162
163
164
165 <?php function creationPanier(){ $ret=false; if (isset( $_SESSION['panier'])) $ret = true; else { $_SESSION['panier']=array(); $_SESSION['panier']['libelleProduit'] = array(); $_SESSION['panier']['qteProduit'] = array(); $_SESSION['panier']['prixProduit'] = array(); $_SESSION['panier']['poidsProduit'] = array(); $ret=true; } return $ret; } function ajouterArticle($libelleProduit,$qteProduit,$prixProduit,$poidsProduit){ if (creationPanier()) { $positionProduit = array_search($libelleProduit, $_SESSION['panier']['libelleProduit']); if ($positionProduit !== false) { $_SESSION['panier']['qteProduit'][$positionProduit] += $qteProduit ; } else { array_push( $_SESSION['panier']['libelleProduit'],$libelleProduit); array_push( $_SESSION['panier']['qteProduit'],$qteProduit); array_push( $_SESSION['panier']['prixProduit'],$prixProduit); array_push( $_SESSION['panier']['poidsProduit'],$poidsProduit); } } else echo "Un problème est survenu veuillez contacter l'administrateur du site."; } function supprimerArticle($libelleProduit){ if (creationPanier()) { $tmp=array(); $tmp['libelleProduit'] = array(); $tmp['qteProduit'] = array(); $tmp['prixProduit'] = array(); $tmp['poidsProduit'] = array(); for($i = 0; $i < count($_SESSION['panier']['libelleProduit']); $i++) { if ($_SESSION['panier']['libelleProduit'][$i] !== $libelleProduit) { array_push( $tmp['libelleProduit'],$_SESSION['panier']['libelleProduit'][$i]); array_push( $tmp['qteProduit'],$_SESSION['panier']['qteProduit'][$i]); array_push( $tmp['prixProduit'],$_SESSION['panier']['prixProduit'][$i]); array_push( $tmp['poidsProduit'],$_SESSION['panier']['poidsProduit'][$i]); } } $_SESSION['panier'] = $tmp; unset($tmp); } else echo "Un problème est survenu veuillez contacter l'administrateur du site."; } function modifierQTeArticle($libelleProduit,$qteProduit){ if (creationPanier()) { if ($qteProduit > 0) { $positionProduit = array_search($libelleProduit, $_SESSION['panier']['libelleProduit']); if ($positionProduit !== false) { $_SESSION['panier']['qteProduit'][$positionProduit] = $qteProduit ; } } else supprimerArticle($libelleProduit); } else echo "Un problème est survenu veuillez contacter l'administrateur du site."; } function MontantGlobal(){ $total=0; for($i = 0; $i < count($_SESSION['panier']['libelleProduit']); $i++) { $total += $_SESSION['panier']['qteProduit'][$i] * $_SESSION['panier']['prixProduit'][$i]; } return $total; } function PoidsGlobal(){ $poidstotal=0; for($i = 0; $i < count($_SESSION['panier']['libelleProduit']); $i++) { $poidstotal += $_SESSION['panier']['qteProduit'][$i] * $_SESSION['panier']['poidsProduit'][$i]; } return $poidstotal; } function MontantGlobalAvecPort(){ $totalavecport=0; $port=0; for($i = 0; $i < count($_SESSION['panier']['libelleProduit']); $i++) { if ($poidstotal<= 500) { $port=5.30; } else if ($poidstotal>= 500 && $poidstotal<= 1000) { $port=6.50; } else if ($poidstotal>= 1000 && $poidstotal<= 2000) { $port=7.40; } else if ($poidstotal>= 2000 && $poidstotal<= 3000) { $port=8.30; } else if ($poidstotal>= 3000 && $poidstotal<= 5000) { $port=10.10; } else if ($poidstotal>= 5000 && $poidstotal<= 7000) { $port=11.90; } else if ($poidstotal>= 7000 && $poidstotal<= 10000) { $port=14.40; } else if ($poidstotal>= 10000 && $poidstotal<= 15000) { $port=16.60; } else if ($poidstotal>= 15000 && $poidstotal<= 30000) { $port=22.60; } else echo"Désolé le poids maximum autorisé en colissimo est de 30kgs"; $totalavecport += MontantGlobal() + $port; return $totalavecport; } } ?>
Partager