Colleagues,
I have the following code:
include_once("conexao.php");
$sql = $conexao->prepare("INSERT INTO compras_clientes(Produtos) VALUES(:COD_PRODUTOS)");
$sql->bindValue(":COD_PRODUTOS",$produto,PDO::PARAM_STR);
$sql->execute();
However when running, you are giving the error:
Fatal error: Call to a member function bindValue () on boolean ...
I also tried this way:
$sql->bindValue(":COD_PRODUTOS","produto1");
But the error persists ... Would anyone know what it could be?