Good afternoon, guys I'm starting in php and I have a problem with my code
function buscarIdProduto($conn,$nome){
$stmt = $conn->prepare("SELECT id FROM produto WHERE NOME_Produto = ?");
$stmt->bind_param("i", $nome);
$stmt->execute();
$resultado = $stmt->get_result();
return $resultado->fetch_assoc();
}
In this function I get the product id, the problem is that it always returns the id 1 then when I insert it reference to the product with id 1.
if(inserirProduto($conn,$idCategoria,$nomeProduto,$descricao,$valor)){
$produto = buscarIdProduto($conn,$nomeProduto);
}
inserirImagem($conn,$novoNome,$produto["id"],$upload,$tipo,$tamanho);