select two tables using where

0

I have a table of produtos (id,id_categoria,nome,descricao) and a table of imagens (id, FileName, id_produto) .

I need to list product data and a product-related table image by id.

$sql = $mysqli->query
("SELECT
   produtos.nome,
   imagens.FileName
FROM
   produtos
INNER JOIN
   imagens ON produtos.id_produto = imagens.id_produto
WHERE produtos.id_produto = '".$_GET['id']."'");
    
asked by anonymous 05.09.2017 / 03:31

1 answer

0

The displayed error:

  

Warning: mysqli_fetch_array () expects parameter 1 to be mysqli_result, boolean given

Indicates some problem with the query. It may be a wrong-named field, or the id is being passed incorrectly. To be sure, try putting this code after your $ mysqli-> query, to see what might be wrong

printf("Error: %s\n", mysqli_error($con));
    
05.09.2017 / 03:52