Voici la page qui me permet d'afficher les pieces dans un tableau.
Je dois recupérer une ligne du tableau et l'ajouter à un autre tableau situé sur une autre page, pour cela j'utilise des liens sur les noms des pieces.
Sur ma deuxieme page j'utilise aussi un lien pour allez sur ma premiere page nommée "CATALOGUE.php"
Mon probléme lorsque je récupéré un piéce sa marche bien mais lorsque je veux en ajouter rien ne va plus il m'écrase la prémiere piéce! sa fait une semaine que je suis dessus si on peut me filer un gros coup de main se serai sympa.
page catalogue :
page devis :
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 $sql="SELECT * from piece where NUM_PIECE in (SELECT NUM_PIECE FROM composition_famille WHERE NUM_FAMILLE ='$NumFamille')"; $resultreq=$connexion->query($sql); $nblignes=$resultreq->num_rows; /*accès à la propriété num_rows de l'objet resultreq*/ if ($nblignes==0) {echo "Erreur!!!";} ?> <table border=1> <tr> <td bgcolor="white" width="100"><b>Référence</b></td> <td bgcolor="white" width="500"><b>Désignation</b></td> <td bgcolor="white" width="100"><b>Prix Unitaire</b></td> </tr> <?php for ($i=0;$i<$nblignes;$i++) { $uneligne = $resultreq->fetch_object(); $tab[$i]= $uneligne->NUM_PIECE; echo $tab[$i]; ?> <tr> <td bgcolor="white"><a href="pagedevis.php?ref=<?php echo echo $uneligne->NUM_PIECE;?>"> <?php echo $uneligne->REF_PIECE;?></a></td> <td bgcolor="white"><a href="pagedevis.php?ref=<?php echo $uneligne->NUM_PIECE;?>"><?php echo $uneligne->DESIGNATION_PIECE;?></a></td> <td bgcolor="white"><a href="pagedevis.php?ref=<?php echo $uneligne->NUM_PIECE;?>"><?php echo $uneligne->PRIX_UNIT_PIECE;?></a></td> </tr> <?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 <?php $recup=$_GET["ref"]; echo $recup; $vreq="SELECT * FROM piece WHERE NUM_PIECE='$recup'"; $resultreq =$connexion->query($vreq); $nblignes=$resultreq->num_rows; /*accès à la propriété num_rows de l'objet resultreq*/ /*if ($nblignes==0) {echo "Erreur!!! lili";}*/ ?> <tr> <td colspan ="6" align="center"> <table border="1"> <tr> <td>Code</td> <td>Designation</td> <td>Quantité</td> <td>Prix Unitaire HT</td> <td>Prix Total HT</td> </tr> <?php while ($Ligne = $resultreq->fetch_object()) { echo'<tr><td>'.$Ligne->REF_PIECE.'</td><td>'.$Ligne->DESIGNATION_PIECE.'</td> <td></td><td>'.$Ligne->PRIX_UNIT_PIECE; } ?> <tr> <td align="right"colspan="4">Prix Total : </td> <td>...</td> </tr> </table> </td> <td colspan="3" align="center"> <a href="pagecatalogue.php">CATALOGUE</a> </td> </tr>
Partager