6
So guys, I’m not getting to solve this query problem within a foreach loop not run. At first I thought it was something wrong with Pdo->beginTransaction so I commented on that part and left only pure code.
<?php
if (isset($_POST["nome"])):
try{
// Começo da validação
//$pdo->beginTransaction();
// Validação do campo nome
if ($_POST["nome"] != null):
$procurarnome=$pdo->prepare("SELECT id FROM users WHERE username=$name");
$procurarnome->execute();
else:
die("Houve um erro no sistema, contate um administrador!");
endif;
// Validação dos campos dinâmicos
$cadastraresposta=$pdo->prepare("INSERT INTO form_respostas(perguntaid,username,reposta)VALUES(:perguntaid,$name,:resposta)");
foreach ($listarpergunta as $pergunta) {
if ($_POST["pergunta$pergunta->id"] != null):
$resposta=addslashes($_POST["pergunta$pergunta->id"]);
$cadastraresposta->bindParam(":perguntaid",$pergunta->id,PDO::PARAM_INT);
$cadastraresposta->bindParam(":resposta",$resposta);
$cadastraresposta->execute();
var_dump($cadastraresposta->execute());
else:
$pdo->rollBack();
die("Preencha todos os campos corretamente!<br />");
endif;
}
// Todos os arquivos foram preenchidos corretamente
//$pdo->commit();
echo "Obrigado!";
}
catch(PDOException $pe){
//$pdo->rollback();
die($pe->getMessage());
}
else:
?>
INSERT querys inside the foreach do nothing in the database and this var_dump returns me a value "false Boolean". What should I do?
PHP is configured to display errors?
– Papa Charlie
Prepared Statements: Voce is doing it wrong
– NullUserException