-
Notifications
You must be signed in to change notification settings - Fork 0
/
update.php
51 lines (37 loc) · 1.56 KB
/
update.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="forum.css" />
<title>Validação de Cadastro</title>
</head>
<body>
<?php
$c = mysql_connect("localhost","root","");
$d = mysql_select_db("forum",$c);
session_start();
$login = $_SESSION["LOGIN"];
$nome = $_POST['txtNome'];
$endereco = $_POST['txtEndereco'];
$cidade = $_POST['txtCidade'];
$estado = $_POST['txtEstado'];
$cep = $_POST['txtCep'];
$email = $_POST['txtEmail'];
$fone = $_POST['txtFone'];
$cpf = $_POST['txtCpf'];
$senha = $_POST['txtPass'];
$insere_dados = mysql_query("UPDATE dados_usuario SET nome='$nome', endereco='$endereco', cidade='$cidade', estado='$estado',
cep='$cep', email='$email', fone='$fone', cpf='$cpf', senha='$senha' where usuario='$login'");
if ($insere_dados != 0){
print("<script language = 'javascript'>alert('Cadastro Atualizado com sucesso!');
location.href = 'usuario.php';</script>");
}
else {
print("<script language = 'javascript'>alert('Não foi possível atualizar o cadastro');
location.href = 'usuario.php';
</script>");
}
mysql_close($c);
?>
</body>
</html>