msi079
Messages postés212Date d'inscriptionlundi 2 août 2010StatutMembreDernière intervention25 juillet 2013
-
11 janv. 2012 à 13:15
tremolat
Messages postés8Date d'inscriptionvendredi 4 mars 2005StatutMembreDernière intervention 6 mars 2012
-
5 mars 2012 à 16:01
salut dois faire des calculs pour dire si le client a soldé ou non et combien il lui reste a payer . j'ai essayé c code mais ça passe pas . alors je suis ici pour avoir de l'aide .
/* select du candidat pour commencer si Ncandidat = candidat */
$sql00=mysql_query("select * from candidat where Ncandidat = $candidat ") ;
while ($row00=mysql_fetch_array($sql00))
{
$no = "$row00[Ncandidat]";
echo "$no,
$row00[nom],
$row00[montantT]
";
echo "
";
/* calcul du total des paiements par candidat et calcul du solde également par candidat */
$db = mysql_connect('localhost', 'root', '');
mysql_select_db('test_php_cs',$db);
$res mysql_query ("SELECT SUM(MTV) FROM payement WHERE payement.Ncandidat $no ") or die (mysql_error());
$row = mysql_fetch_row($res);
/* select du ou des différent(s) paiement(s) effectué(s) par le candidat */
$sql1 =mysql_query("select * from payement where payement.Ncandidat = $no ") ;
while ($row1=mysql_fetch_array($sql1))
{
echo "\";
echo \"----
$row1[datePay],
$row1[MTV],
\";
echo "
";
echo "
";
}
echo "
";
}
?>
Redis-moi si jamais je peux te faire un truc plus propre quand j'ai un peu de temps.