JoaoNascimento Posted June 28, 2012 at 03:21 AM Report Share #466070 Posted June 28, 2012 at 03:21 AM 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 http://www.joaonascimento.info Link to comment Share on other sites More sharing options...
HappyHippyHippo Posted June 28, 2012 at 04:58 AM Report Share #466071 Posted June 28, 2012 at 04:58 AM 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 Portugol Plus Link to comment Share on other sites More sharing options...
JoaoNascimento Posted June 28, 2012 at 09:35 AM Author Report Share #466094 Posted June 28, 2012 at 09:35 AM 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 http://www.joaonascimento.info Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now