-4
`
<?php
$result_estoque = "SELECT estoque FROM produto";
$resultado_estoque = mysqli_query($conn, $result_estoque);
$result_estoque >= 1;
if($result_estoque >= 0)
echo "<font color=\"#008000\">Disponível</font></b>";
elseif($result_estoque <= 0)
echo "<font color=\"#FF0000\">Indisponível</font></b>";
?></h3>`
I put up my if. I’m assembling a digital catalog that pulls the product information from my database, i would like to know how do I stop instead of showing the quantity of products that have in stock, it show the name Available when have products in stock and unavailable when the stock is zeroed. would like to know how to do that if?
click on the image to view it in its original size
<div class="row">
<?php while($rows_produtos = mysqli_fetch_assoc($resultado_produtos)){ ?>
<div class="col-sm-6 col-md-3">
<div class="thumbnail">
<img src="imagens/produto.jpg" alt="...">
<div class="caption text-center">
<a href="detalhes.php?id_curso=<?php echo $rows_produtos['id']; ?>"><h3>Produto <br><?php echo $rows_produtos['nome']; ?></h3><h3>Descrição <br><?php echo $rows_produtos['descricao']; ?></h3><h3>R$ <?php echo $rows_produtos['valor_venda']; ?></h3><h3>Código: <?php echo $rows_produtos['codigo']; ?></h3><h3>Estoque: <?php echo $rows_produtos['estoque']; ?></h3></a>
</div>
</div>
</div>
<?php } ?>
</div>
</div>
tried as follows $stock = 1; if($stock == 1) echo "Available"; elseif($stock == 0) echo "Unavailable";
– Marcos André
but to no avail
– Marcos André
You can edit the question to include the formations you commented on.
– Danizavtz
Which query is performed to generate variable values
$rows_produtos = mysqli_fetch_assoc($resultado_produtos)
?– Clarck Maciel
include_once("connected.php"); $result_products = "SELECT * FROM products"; $resultado_products = mysqli_query($Conn, $result_products);
– Marcos André