benamoubeach a écrit :
mais la ton panier il ne pourra avoir q'un seul produit , certe avec une quantité variable mais tu ne pourras pas avoir plusieurs produits.
|
ok , c'est résolu, j'ai changé mon panier:
Code :
- if(!isset($_SESSION['panier']))
- {
- $_SESSION['panier']=array("categorie" => array(),
- "produit" => array(),
- "qte" => 0);
- $_SESSION['panier']['categorie']=$cat;
- $_SESSION['panier']['produit']=$prod;
- $_SESSION['panier']['qte']+=1;
- }
- else
- {
- if(!isset($_SESSION['panier']['$cat']))
- {
- $_SESSION['panier']['categorie']=$cat;
- $_SESSION['panier']['produit']=$prod;
- $_SESSION['panier']['qte']+=1;
- }
- else
- {
- $_SESSION['panier']['qte']+=1;
- }
- }
|
mais maintenant, j'ai le problème suivant:
je prend un article de la categorie voiture, ça ecrit, 'vous avez 1 voiture'.
ensuite, si je prends un article de la catégorie fleur, ça écrit: 'vous avez 2 fleurs', donc je dois mal faire mon incrémentation, mais je vois pas...
en fait j'ai le nombre total d'articles, mais il me faudrait le nombre d'articles par catégories
Message édité par jerome134 le 02-06-2005 à 15:18:27