Posted by Jerry Stuckle on 10/09/06 13:17
elia wrote:
> 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
>
Two options:
<? if ($quantite1 > 0) {
echo('
<tr>
<td align="left" nowrap="nowrap">Article 1</td>
<td align="center">' .$ quantite1 . '</td>
<td align="center">20 €</td>
<td align="center">' . $montant1 . ' €</td>
</tr>');
}
else{
echo("");
}
?>
Or
<? if ($quantite1 > 0) {
echo("
<tr>
<td align=\"left\" nowrap=\"nowrap\">Article 1</td>
<td align=\"center\">$quantite1</td>
<td align=\"center\">20 €</td>
<td align=\"center\">$montant1 €</td>
</tr>');
}
else{
echo("");
}
?>
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
[Back to original message]
|