Jump to content

"You have an error in your SQL syntax"


JoaoNascimento

Recommended Posts

alguém me explica o porque de nesta linha dar este erro?

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1

$idProposta = $_GET['idProposta'];
$idAluno = $_GET['idUtilizador'];


$insere1 = mysql_query("INSERT INTO candidatura (Proposta_idProposta, EstadoCand_idEstadoCand) VALUES ('".$idProposta."', '5')") or die("Aqui");
$idCandidatura = mysql_insert_id();


if ($insere1 == true){
 [b]$insere2 = mysql_query("INSERT INTO candidato(Aluno_idAluno, Candidatura_idCandidatura) VALUES ('".$idAluno.", ".$idCandidatura."") or die(mysql_error());[/b]

 if($insere2 == true){
  echo "<script>
   alert('Candidatura submetida com sucesso.');
   window.location = 'listarCandidatura.php';
  </script>";
 }
 else

ota falta codigo

Link to comment
Share on other sites

o resultado do código

INSERT INTO candidato(Aluno_idAluno, Candidatura_idCandidatura) VALUES ('".$idAluno.", ".$idCandidatura.""

é

INSERT INTO candidato(Aluno_idAluno, Candidatura_idCandidatura) VALUES ('3, 4

quando acontece este tipo de erros o melhor é criar o SQL para uma variável e imediatamente fazer echo antes de tentar executar-lo

IRC : sim, é algo que ainda existe >> #p@p
Link to comment
Share on other sites

o resultado do código

INSERT INTO candidato(Aluno_idAluno, Candidatura_idCandidatura) VALUES ('".$idAluno.", ".$idCandidatura.""

é

INSERT INTO candidato(Aluno_idAluno, Candidatura_idCandidatura) VALUES ('3, 4

quando acontece este tipo de erros o melhor é criar o SQL para uma variável e imediatamente fazer echo antes de tentar executar-lo

realmente estava a utilizar sem o ")". acho que a aspa tambem é desnecessaria

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.