1
Good afternoon. How do I make the chosen product not appear in the related products?
$stmtProdRel = $pdo->prepare("SELECT * FROM produtos as p
WHERE p.produtos_situacao = 1 AND
p.produtos_categoria = :categoria");
$stmtProdRel->bindParam(':categoria', $resultProd->produtos_categoria);
$stmtProdRel->execute();
$resultProdRel = $stmtProdRel->fetchAll(PDO::FETCH_OBJ);
could explain better what your doubt?
– Tales Peres
https://atelieflordelis.com.br/product/acucena-aramada/14 --- I am making this site... but I want to take the product chosen above the related products
– Betinho Silva
ok, but this select you put brings the related products?
– Tales Peres
Product chosen where or at what time?
– Bruno
@Maybe yes. Bring. I want the products does not appear in related.
– Betinho Silva
@Bruno in the link I put in the comments. It appears as if I was seeing more information of the products. but I want it not to appear in related
– Betinho Silva