Hi, the following code is "echoing" even when my quantity is higher then 0. I dan't want the zero values in my echo. How can i solve this ?
Thanks in advance;
for ($counter=0; $counter<3; $counter++){
if ($quantity>0) {
echo "<BR>$quantity[$counter]" . " x $prod[$counter]<br>";
}
}