-
Notifications
You must be signed in to change notification settings - Fork 0
/
alterarUsuario.php
44 lines (29 loc) · 995 Bytes
/
alterarUsuario.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
<?php
require_once("conexao.php");
$id = (isset($_GET['id'])) ? $_GET['id'] : "";
$sql = "select nome, email from usuario where id = " . $id;
$resultado = mysqli_query($conexao, $sql);
$resultado2 = mysqli_fetch_array($resultado);
$nomeOriginal = $resultado2['nome'];
$emailOriginal = $resultado2['email'];
if (isset($_POST['atualizarUsuario'])) {
$novoNome = $_POST['nome'];
$novoEmail = $_POST['email'];
if (($_POST['senha']) != null) {
$novaSenha = password_hash($_POST['senha'], PASSWORD_DEFAULT);
}
$sql = "update usuario set nome = '$novoNome', email = '$novoEmail'";
if (!empty($novaSenha)) {
$sql .= ", senha = '$novaSenha'";
}
$sql .= " where id = $id";
$resultado = mysqli_query($conexao, $sql);
if ($resultado) {
header("Location: listarUsuario.php");
exit;
} else {
echo "Erro na consulta: " . mysqli_error($conexao);
}
var_dump($sql);
}
require_once("cadastrarUsuario.php");