Take value from only one variable

Asked

Viewed 27 times

0

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, so far all right, however, it is taking the code of all the registered products. Do any of you have any idea how to solve this ? Is there any way to limit the variable to just one value ?

Script that searches the 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();
        }
    ?>
  • Try to send the code inside the insert(), with ajax I think it would be easier

  • present the function code ìnserir()

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.