I have checked this code several times and I did not find the error, please help me find and correct ...
echo"email = ".$email. "<br>" ;
echo "ddd = ".$ddd ."<br>";
echo "telefone = ".$telefone . "<br>";
echo "cpf = ".$cpf . "<br>";
echo "produto = ".$produto . "<br>" ;
echo "status = ".$status . "<br>" ;
echo "total = ".$total . "<br>" ;
echo "data = ".$data . "<br>";
echo "ref = ".$ref. "<br>";
$inseri= $pdo -> prepare (" INSERT INTO " .rico_vendas. "(id, email, ddd, telefone, cpf, produto, status, valor, data_cadastrado, ref)
VALUES (:id, :email, :ddd, :tel, :cpf, :produto, :status, :valor, :data, :ref)");
try{
$inseri= $pdo -> prepare ($sql);
$inseri -> bindValue(':id',NULL);
$inseri -> bindValue(':email',$email);
$inseri -> bindValue(':ddd',$ddd);
$inseri -> bindValue(':tel',$telefone);
$inseri -> bindValue(':cpf',$cpf);
$inseri -> bindValue(':produto',$produto);
$inseri -> bindValue(':status',$status);
$inseri -> bindValue(':valor',$total);
$inseri -> bindValue(':data',$data);
$inseri -> bindValue(':ref',$ref);
$executa = $inseri -> execute();
if($executa){
echo 'Dados inseridos com sucesso';
}
else{
echo 'Erro ao inserir os dados - '. print_r($pdo->errorInfo());;
}
}
catch(PDOException $e){
echo $e->getMessage();
}