Good evening
Home
The problem was as follows, I have a select
where it contains all the products registered, autocomplete it with a foreach
so that it pulls all the products of the bank, what I want is the following, when I select a product in my select
I want the other field to be completed with the price the quantity among others
Code
<?php
require_once "../Controller/Conecta.php";
require_once "../Controller/Busca.php";
require_once "ViewCabecalhoInterno.php";
// Instanciando objetos
$conecta = new Conecta();
$busca = new Busca();
// Atribuindo variavel a sessao id do usuario
$idUsuario = $_SESSION["usuarioId"];
// Atribuindo variavel as funcoes
$conexao = $conecta->conexao();
$listaProdutos = $busca->buscarApenasProdutos($conexao, $idUsuario);
?>
<form action="../Model/ModelCadastrarNovaEntradaEstoque.php" method="post" class="form-horizontal">
<!-- Id usuario -->
<input type="hidden" value="<?= $idUsuario?>">
<!-- Produto -->
<div class="col-lg-7">
<!-- Legenda -->
<label for="nomeProduto" class="label label-info">Nome do Produto</label>
<!-- Campo -->
<select name="nomeProduto" id="nomeProduto" class="form-control">
<?php
foreach ($listaProdutos as $produto)
{
?>
<!-- Produtos -->
<option value="<?= $produto['id'] ?> "><?= $produto['nomeProduto'] ?></option>
<?php
}
?>
</select>
</div>
<!-- Preco -->
<div class="col-lg-4">
<!-- Legenda -->
<label for="precoProduto" class="label label-info">Preço do Produto</label>
<!-- QUERO QUE ESTE CAMPO SEJA COMPLETADO, DENTRE OUTROS QUE IREI FAZER -->
<input type="text" name="precoProduto" id="precoProduto" class="form-control" value="<?= $produto['valorVenda']?>">
</div>
</form>
<?php
require_once "ViewRodape.php";
?>