SQL does not return all records in the table

0

My application consists of an html page in which the user informs the code of a product, the quantity, and it is shown below. Behold, if I add a product, it is inserted, but it does not return. And when I continue to add items, only the following records are listed.

<?php
include_once("Classes\CONEXAO_BD.php");
session_start();

echo $ID_PEDIDO =  $_SESSION['novo_id'];

//Início da listagem
$servidor = 'localhost';
$usuario = 'root';
$senha = '';
$banco = 'portfolio';

//Sql para listar os produtos adicionados
$comando_sql_listagem = "SELECT * FROM item_pedido INNER JOIN calcado ON item_pedido.ID_CALCADO = calcado.ID_CALCADO WHERE ID_PEDIDO = '".$ID_PEDIDO."' ";  


//Sql para calcular o preço dos produtos
$comando_sql_soma = "SELECT SUM(PRECO) FROM calcado INNER JOIN item_pedido ON calcado.ID_CALCADO = item_pedido.ID_CALCADO WHERE ID_PEDIDO = '".$ID_PEDIDO."' "; 

$link = mysqli_connect($servidor,$usuario,$senha,$banco);

$resultado_listagem = mysqli_query($link,$comando_sql_listagem) or die (mysqli_error($link)); 
$linha  = mysqli_fetch_assoc($resultado_listagem);

$resultado_soma = mysqli_query($link,$comando_sql_soma) or die (mysqli_error($link));
$total  = mysqli_fetch_assoc($resultado_soma);
?>

Listing:

<?php
            if(!empty($linha))
            {   
                while($linha  = mysqli_fetch_assoc($resultado_listagem) ) 
                {   
            ?>  
                    <tr>
                        <td data-title="ID"><?php echo $linha['ID_CALCADO']; ?></td>
                        <td data-title="NOME"><?php echo $linha['NOME']; ?></td>
                        <td data-title="NOME"><?php echo $linha['TAMANHO']; ?></td>
                        <td data-title="COR"><?php echo $linha['QUANTIDADE']; ?></td>
                        <td data-title="VALOR">R$ <?php echo $linha['PRECO']; ?></td>
                        <td data-title="">
                            <button type="button" class="btn btn-danger" data-toggle="modal" data-target="#excluir" data-cpf="">
                            Excluir
                        </td>

                    </tr>
            <?php 
                }
            }
            else
            {
            ?>
                    <tr>
                        <td colspan="5">
                            <center>
                                <?php
                                echo "Nenhum produto adicionado";
                                ?>
                            </center>
                        </td>
                    </tr>
            <?php   
            }   
            ?>

Insertion code in the database:

<?php
include_once("Classes/CONEXAO_BD.php");

$ID_CALCADO = $_GET["ID_CALCADO"];
$QUANTIDADE = $_GET["QUANTIDADE"];
$ID_PEDIDO  = $_GET["ID_PEDIDO"];
$TAMANHO  = $_GET["TAMANHO"];

$comando_sql = "insert into item_pedido (ID_CALCADO,QUANTIDADE,ID_PEDIDO,TAMANHO) values ('".$ID_CALCADO."' , '".$QUANTIDADE."' , '".$ID_PEDIDO."' , '".$TAMANHO."') ";
$nova_conexao = new CONEXAO_BD();
$nova_conexao->Abrir_conexao($comando_sql);
?>
<script type="text/javascript"> 
window.location.href="cadastro_pedido.php";
</script>
    
asked by anonymous 11.10.2017 / 03:21

0 answers