I have my bd, however, it's bringing me a different result than the one in the bank
$consulta = "select * FROM PRODUTO_pedido WHERE PEDIDO_PED_ID =12";
$resultado = $db_con->query($consulta);
$contador = $resultado ->rowCount();
while ($row = $resultado-> fetch()){
echo "<script>alert(".$row['PRODUTO_PROD_CODIGO'].")</script>";
}
For example, in bd the id is like 299007
and is displaying 01110105
.
How do I solve it?