Posted by elia on 10/09/06 08:55
Hello,
I would like to show a line in a tabel in html if there is quantity of
article choosed.
My code is:
<? if ($quantite1 > 0) {
echo('
<tr>
<td align="left" nowrap="nowrap">Article 1</td>
<td align="center"><? echo $quantite1 ?> </td>
<td align="center">20 €</td>
<td align="center"> <? echo $montant1 ?> €</td>
</tr>');
}
else{
echo("");
}
?>
If there is no article >> no line
If there is article >> show the line
Problem: I can have the variable $quantite1 and $montant1 en php
Navigation:
[Reply to this message]
|