Jump to content
Fórum Script Brasil
  • 0

(Resolvido) Update em PHP(MYSQL)


Renê Ribeiro Mendes

Question

Boa Noite,

Tenho os códigos abaixo, porém os mesmo não estão funcionando para alteração.

Inseri os 3 códigos separadamente.

principal.pp

<html>
<head>
<title>
Tela Principal
</title>
</head>
<body>

<form action="" method="post">

<?php
echo "<DIV>";
 include("conexao.php");
 $result=@mysql_query("select * from usuario ORDER BY ID");
     echo "<table width=900 border=1>";
     echo "<tr>";
     echo "<td>ID</td>";
     echo "<td>Nome</td>";
     echo "<td>Usuario</td>";
     echo "<td>Senha</td>";
     echo "<td>Funcao</td>";
     echo "<td colspan=2>Ações</td>";
     echo "</tr>";
 while($row=@mysql_fetch_array($result)){
     echo "<tr>";
     echo "<td>".$row["ID"]."</td>";
     echo "<td>".$row["NOME"]."</td>";
     echo "<td>".$row['USUARIO']."</td>";
     echo "<td>".$row['SENHA']."</td>";
     echo "<td>".$row['FUNCAO']."</td>";
     echo "<td><a href=\"alterar.php?id=".$row['ID']."\">Alterar</a></td>";
     echo "<td>Excluir</td>";
     echo "<td>";
     echo "</td>";
     echo "</tr>";
echo "</DIV>";
 }

 ?>
      <input type="submit" value="Cadastrar" name="botao">
</form>

<?if (isset($_POST["botao"]))
 {
 header('Location: cadastrar.php'); 
 }
?>

</body>
</html>
Alterar.php

<?php
$id=$_GET['id'];



include "conexao.php";
$result= @mysql_query("select * from usuario where id=$id");
echo "<form name=\"form\" action=\"update.php\" method=\"post\">";
while($row= @mysql_fetch_array($result)){
echo "<input type=\"text\" name\"NOME\" value=".$row['NOME']."><br>";
echo "<input type=\"text\" name=\"USUARIO\" value=".$row['USUARIO']."><br>";
echo "<input type=\"submit\" value=\"Salvar\">";
echo "<input type=\"button\" value=\"Voltar\" onclick=\"location.href='lista_clientes.php'\" >";
}
?>
update.php

<?php
$id=$_GET['id'];

$nome = $_POST['USUARIO'];
$usuario = $_POST['USUARIO'];

include "conexao.php";
$result= @mysql_query("UPDATE USUARIO SET nome = '$nome',usuario = '$usuario' WHERE id =$id");
@mysql_close($con); 

?>

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Troque:

$result= @mysql_query("UPDATE USUARIO SET nome = '$nome',usuario = '$usuario' WHERE id =$id");
Por:
$result= mysql_query("UPDATE USUARIO SET nome = '$nome',usuario = '$usuario' WHERE id =$id")OR DIE(mysql_error());

Se o problema for na consulta o mesmo será exibido.

Link to comment
Share on other sites

  • 0

Bom Dia,

Fiz o teste e apresentou a seguinte mensagem:

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

Mas não identifiquei erro neste código..

<?

$id=$_GET['id'];

$nome = $_POST['USUARIO'];

$usuario = $_POST['USUARIO'];

include "conexao.php";

//$result= @mysql_query("UPDATE USUARIO SET nome = '$nome',usuario = '$usuario' WHERE id =$id");

$result= mysql_query("UPDATE USUARIO SET nome = '$nome',usuario = '$usuario' WHERE id =$id")OR DIE(mysql_error());

@mysql_close($con);

?>

Renê

Troque:

$result= @mysql_query("UPDATE USUARIO SET nome = '$nome',usuario = '$usuario' WHERE id =$id");
Por:
$result= mysql_query("UPDATE USUARIO SET nome = '$nome',usuario = '$usuario' WHERE id =$id")OR DIE(mysql_error());

Se o problema for na consulta o mesmo será exibido.

Link to comment
Share on other sites

  • 0

Encontrei o erro, faltou o "=" do name.

echo "<input type=\"text\" name\"NOME\" value=".$row['NOME']."><br>";

Obrigado

Então..

Estou usando GET para pegar o "ID" da listagem.

No formulário alterar estou usando POST e nos demais continuo usando POST.

Não estou entendendo o que acontece..

Renê

$id=$_GET['id]; <- Se é por POST porque está usando $_GET?

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
      652.1k
×
×
  • Create New...