Jump to content
Fórum Script Brasil
  • 0

Insert Mysql+php


Guest - Alessandro -

Question

Guest - Alessandro -

Estou tentando fazer inclusao em uma tabela do mysql e estou seguindo a sintaxe abaixo para fazer isso, alguém sabe se está correto ? ou se tem formas melhores ?

Obrigado!!

$link1=mysql_connect('localhost','admin','2005');

mysql_select_db('DBONLINE',$link1);

$query1="INSERT INTO alunos (MATRICULA,NOME_ALUNO,CPF,CI,ORGAOCI,UF_CI,RUA,NUMERO,COMPL,BAIRRO,CIDADE,ESTADO,CEP,ID_CURSO,SENHA,EMAIL,HOME_PAGE,DATA_NASCIMENTO)

VALUES('$MATRICULA','$NOME_ALUNO','$CPF','$CI','$ORGAOCI','$UF_CI','$RUA','$NUMERO','$COMPL','$BAIRRO','$CIDADE','$ESTADO','$CEP','$ID_CURSO','$SENHA','$EMAIL','$HOME_PAGE','$DATA_NASCIMENTO')";

$result=mysql_query($query1,$link1);

$linpost=mysql_insert_id($result);

if ($linpost>=1)

{

print("DADOS GRAVADOS");

}

else

{

print("ERRO NA GRAVACAO DOS DADOS");

}

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0
Guest Guest

Valeu mas estou sem nenhum material a respeito a sintaxe seria

$result=mysql_query($query1,$link1) or die (mysql_error());

o log de erro fica dentro de que arquivo ?

Link to comment
Share on other sites

  • 0

Quem sabe tenta algo assim:


$link1=mysql_connect('localhost','admin','2005'); 

$query1 = "INSERT into alunos values ('$MATRICULA','$NOME_ALUNO','$CPF','$CI','$ORGAOCI','$UF_CI','$RUA',
'$NUMERO','$COMPL','$BAIRRO','$CIDADE','$ESTADO','$CEP','$ID_CURSO',
'$SENHA','$EMAIL','$HOME_PAGE','$DATA_NASCIMENTO')"; 
  
if (mysql_db_query ("DBONLINE", $query1, $link1)) {
echo "<script>alert('Dados incluídos com sucesso!');</script>";
mysql_close($link1);
}

else {
echo "<scrip>alert('Falha na inclusão');</script>"; 
}

mysql_close($link1);

Tá ae...não sei se é melhor que a sua, mas eu uso assim e funciona direitinho smile.gif

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...