-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsaveEdit.php
25 lines (23 loc) · 860 Bytes
/
saveEdit.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
<?php
// isset -> serve para saber se uma variável está definida
include_once('config.php');
if(isset($_POST['update']))
{
$id = $_POST['id'];
$nome = $_POST['nome'];
$email = $_POST['email'];
$senha = $_POST['senha'];
$telefone = $_POST['telefone'];
$sexo = $_POST['genero'];
$data_nasc = $_POST['data_nascimento'];
$cidade = $_POST['cidade'];
$estado = $_POST['estado'];
$endereco = $_POST['endereco'];
$sqlInsert = "UPDATE usuarios
SET nome='$nome',senha='$senha',email='$email',telefone='$telefone',sexo='$sexo',data_nasc='$data_nasc',cidade='$cidade',estado='$estado',endereco='$endereco'
WHERE id=$id";
$result = $conexao->query($sqlInsert);
print_r($result);
}
header('Location: sistema.php');
?>