I recently started in the area and I came across this situation.
This code is not inserting in my MySQL.
<?php
try{
$pdo = new PDO('mysql:host=localhost:3306;dbname=formularioecofin', 'SECRETO', 'SECRETO');
}
catch (PDOException $e )
{
echo 'Erro ao conectar com o MySQL: ' . $e->getMessage();
}
? >
$inserir_banco = $pdo->prepare("INSERT INTO 'formulariodadoscadastrais' (CNPJ, RazaoSocial, NomeFantasia, NomeResponsavel, Cpf, Telefone,CelularWhatsapp, Email) SET (?,?,?,?,?,?,?,?)");
$array_sql = array(
$novos_campos['nCNPJ'],
$novos_campos['nNome'],
$novos_campos['nFantasia'],
$novos_campos['nNomeResp'],
$novos_campos['nCPF'],
$novos_campos['nTelefone'],
$novos_campos['nCelular'],
$novos_campos['nEmail']
);
if($inserir_banco->execute($array_sql)){
$respostas['erro'] = 'nao';
$respostas['msg'] = 'Respostas cadastradas com sucesso!';
}else{
$respostas['erro'] = 'sim';
$respostas['getErro'] = 'Não foi possível cadastrar as respostas. Contate seu programador!';
}
};
Every time I submit it, it returns "It was not possible to register the answers. Contact your programmer!
Can someone give me a light?