I'm having a little problem with my sales system.
The system works as follows, when I press the +
button, it adds the product to the cart, until then everything is ok, however, it is taking the code of all products registered. Do any of you have any idea how to solve this? Is there any way to limit the variable to just one value?
Script searching for items:
<?php
include "php/conexao.php";
$cod_produto = "";
$nome_produto = "";
$obs_produto = "";
$valor_produto = "";
$status_produto = "";
$cod_categoria = "";
try {
$pesquisa = $conexao->query("select * from produto order by 1 desc");
foreach( $pesquisa as $row ){
$cod_produto = $row[ '0' ];
$nome_produto = $row[ '1' ];
$obs_produto = $row[ '2' ];
$valor_produto = $row[ '3' ];
$status_produto = $row[ '4' ];
$cod_categoria = $row[ '5' ];
echo '<div class="pizzas">';
echo '<h4 class="codigo_produto">'.$cod_produto.'</h4>';
echo '<p class="nome_pizza" ><b>'.$nome_produto.'</b></p>';
echo '<p class="valor_unitario">R$ '.$valor_produto. ' <button
onClick="inserir()">'.$cod_produto.'</button></p>';
//echo '<h4 class="codigo_produto">'.$cod_produto.'</h4>';
}
} catch
( PDOExPDOException $erro ){
echo $erro->getMessage();
}
?>