samiapirou
Messages postés112Date d'inscriptiondimanche 16 juin 2013StatutMembreDernière intervention11 novembre 2015
-
21 juil. 2013 à 14:29
Exileur
Messages postés1475Date d'inscriptionmercredi 31 août 2011StatutMembreDernière intervention16 décembre 2022
-
29 juil. 2013 à 14:10
Salut,j'ai fait un panier pour les pièce,le pb c'est que si le premier client qui rentre et passe la commande normale lors de la l'affichage de sa commande il affiche le nom le prenom la quantité le prix et le nom du produit commandé mais si un autre client qui accede et passe la commande il lui affiche juste le nom et le prenom mais la quantité le prix et le nom du produit il affiche dans la commande du premiers clien.et aussi sans la commande du premier client qui accede s'il fait plus d'une commande il lui affiche ceci voila s qu'il affiche num commande:1
nom:aze
prenom:loi
quantite*prix|nom produit
4*150------miroir
total:600
et la deuxième commande qui'il passe il affiche seulement le nom,prenom,total et la quantite le prix et le nom du produit il affiche dans la première commande
num commande:2
nom:aze
prenom:loi
total:800
donc la première commande devienne comme suit
nom:aze
prenom:loi
quantite*prix|nom produit
4*150------miroir
6*250--------porte
total:600
et pour le deuxième client qui accede il afffiche juste ca par exemple:
num commande:2
nom:aze
prenom:loi
total:800
donc voila le panier_fct.php::::
<?php
include('connexion.php');
function creationPanier(){
if (!isset($_SESSION['panier'])){
$_SESSION['panier']=array();
$_SESSION['panier']['ident'] = array();
$_SESSION['panier']['refProduit'] = array();
$_SESSION['panier']['qteProduit'] = array();
$_SESSION['panier']['prixProduit'] = array();
$_SESSION['panier']['verrou'] = false;
}
return true;
}
function ajouterArticle($ident,$refart,$qteProduit,$prixProduit){
//Si le panier existe
if (creationPanier() && !isVerrouille())
{
//Si le produit existe déjà on ajoute seulement la quantité
$positionProduit = array_search($refart, $_SESSION['panier']['refProduit']);
if ($positionProduit !== false)
{
$_SESSION['panier']['qteProduit'][$positionProduit] += $qteProduit ;
}
else
{
//Sinon on ajoute le produit
array_push( $_SESSION['panier']['ident'],$ident);
array_push( $_SESSION['panier']['refProduit'],$refart);
array_push( $_SESSION['panier']['qteProduit'],$qteProduit);
array_push( $_SESSION['panier']['prixProduit'],$prixProduit);
}
}
else
echo "Un problème est survenu veuillez contacter l'administrateur du site.";
}
function modifierQTeArticle($refart,$qteProduit){
//Si le panier éxiste
if (creationPanier() && !isVerrouille())
{
//Si la quantité est positive on modifie sinon on supprime l'article
if ($qteProduit > 0)
{
//Recharche du produit dans le panier
$positionProduit = array_search($refart, $_SESSION['panier']['refProduit']);
if ($positionProduit !== false)
{
$_SESSION['panier']['qteProduit'][$positionProduit] = $qteProduit ;
}
}
else
supprimerArticle($refart);
}
else
echo "Un problème est survenu veuillez contacter l'administrateur du site.";
}
function supprimerArticle($refart){
//Si le panier existe
if (creationPanier() && !isVerrouille())
{
//Nous allons passer par un panier temporaire
$tmp=array();
$tmp['ident'] = array();
$tmp['refProduit'] = array();
$tmp['qteProduit'] = array();
$tmp['prixProduit'] = array();
$tmp['verrou'] = $_SESSION['panier']['verrou'];
}
//On remplace le panier en session par notre panier temporaire à jour
$_SESSION['panier'] = $tmp;
//On efface notre panier temporaire
unset($tmp);
}
else
echo "Un problème est survenu veuillez contacter l'administrateur du site.";
}
$requete ="INSERT INTO commande_piece (id_piece,num_piece,num_commande,qtt) VALUES ('','$num_produit','$num_comm','$qtt_produit')";
mysql_query($requete,$connection);
}
mysql_close($connection);
supprimePanier();
header("Location: commande_cli.php") ;
}
}
?>
la commande_cli.php ::::::voici le code
<?php
//connexion a la base
$connection = mysql_connect("localhost","root","");
if ( ! $connection )
die ("connection impossible");
//On sélectionne la BDD
$mabasededonnee="bdd";
mysql_select_db($mabasededonnee) or die ("pas de connection");
$e=$_SESSION['log_cli'];
$req=mysql_query("select * from 'commande' where ((login_client='$e') && (valid_cmd='0'))")or die (mysql_error());
$i=0;
while ($i<mysql_num_rows($req))
{
$ligne=mysql_fetch_row($req);
echo"
<table class='affich' align='center' cellspacing='1' >
<tr>
<td width=70%>
<b>Numero de commande :</b>".$ligne[0]."";
$r=mysql_query("SELECT * FROM client WHERE login_client='$ligne[1]'")or die (mysql_error());
$li=mysql_fetch_row($r);
echo"
<br><b>Nom client : </b>".$li[1]."
<br><b>Prénom client : </b>".$li[2]."<br>
<br><b>Quantité X Prix U</b> | <b>Nom Produit</b> <br><br>
";
$az=mysql_query("select * from 'commande_piece' where num_commande='$ligne[0]'")or die (mysql_error());
$k=0;
while ($k<mysql_num_rows($az))
{
$zz=mysql_fetch_row($az);
$produit=mysql_query("select * from 'piece' where num_piece='$zz[1]'")or die (mysql_error());
$pro=mysql_fetch_row($produit);
echo "(".$zz[3]." X ".$pro[5]." DA) -------- ".$pro[2]."<br>";
$k=$k+1;
};echo"
<br><b>Montant Total à payer : </b>".$ligne[2]." DA
</td>
<br><b>Quantité X Prix U</b> | <b>Nom Produit</b> <br><br>
";
$az=mysql_query("select * from 'commande_piece' where num_commande='$ligne[0]'")or die (mysql_error());
$k=0;
while ($k<mysql_num_rows($az))
{
$zz=mysql_fetch_row($az);
$produit=mysql_query("select * from 'piece' where num_piece='$zz[1]'")or die (mysql_error());
$pro=mysql_fetch_row($produit);
echo "(".$zz[3]." X ".$pro[5]." DA) -------->> ".$pro[2]."<br>";
$k=$k+1;
};echo"
<br><b>Montant Total à payer : </b>".$ligne[2]." DA
$req=mysql_query("select * from 'commande' where ((login_client='$e') && (valid_cmd='-1'))")or die (mysql_error());
$i=0;
while ($i<mysql_num_rows($req))
{
$ligne=mysql_fetch_row($req);
echo"
<table class='affich' align='center' cellspacing='1' >
<tr>
<td width=70%>
<b>Numéro commande :</b> ".$ligne[0]."
";$r=mysql_query("select * from 'client' where login_client='$ligne[1]'")or die (mysql_error());
$li=mysql_fetch_row($r);
echo"
<br><b>Nom client : </b>".$li[1]."
<br><b>Prénom client : </b>".$li[2]."<br>
<br><b>Quantité X Prix U</b> | <b>Nom Produit</b> <br><br>
";
$az=mysql_query("select * from 'commande_piece' where num_commande='$ligne[1]'")or die (mysql_error());
$k=0;
while ($k<mysql_num_rows($az))
{
$zz=mysql_fetch_row($az);
$produit=mysql_query("select * from 'piece' where num_piece='$zz[1]'")or die (mysql_error());
$pro=mysql_fetch_row($produit);
echo "(".$zz[3]." X ".$pro[5]." DA) -------- ".$pro[2]."<br>";
$k=$k+1;
};echo"
<br><b>Montant Total à payer : </b>".$ligne[2]." DA