-1
I am generating a product div with php, in this list I would like to add a check-box with boolean value 0-1 for active and disabling. When the manager clicks disabled the product does not appear to the user, I can’t find an example about it so when you click the check-box Ajax sends the value to PHP. Below is the PHP code for the generation of div.
$result_produto = "SELECT * FROM produto";
$resultado_produto = mysqli_query($conn, $result_produto);
while($row_produto = mysqli_fetch_assoc($resultado_produto)){
echo "<div class='row border bg-color: #80006f'>" . "<div class='col-2 p-3 '>" . "<img class='Img rounded border border-primary' src='". $pasta . $row_produto['Img_produto'] . "'id='produto''>" . "</div>"
. "<div class='col-5>'" . "<div class='row'>" . "<span class='name-prod'> Nome: </span>" . $row_produto['Nome_produto'] .
"<div class='row'>" ."<span class='desc-prod-title'> Descrição:</span>" . $row_produto['Descricao_produto'] . "</div>" . "</div>".
"<div class='col-2>'" . "<span class='price-prod'> Preço: </span>" . $row_produto['Preco_produto'] . "</div>" . "</div>";
}
?>
Thank you very much this will help me a lot, in my case I just started making var check = Document.getElementsByName($row_product['ID']); for the name to be equal to the bank ID, and I thought I could take the ID, the value of the activated table, so I could change it
– Lincoln Ferreira - T.I