-
Notifications
You must be signed in to change notification settings - Fork 0
/
editar_perfil.php
55 lines (39 loc) · 1.31 KB
/
editar_perfil.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
52
53
54
55
<?php
require('conexao.php');
require('autentica.php');
$id = "";
$nome = "";
$email = "";
$senha = "";
//Se foi enviado ID via GET - se é edição de paciente
if(isset($_GET['id'])){
//Obtém valor enviado via GET
$id = $_GET['id'];
$sql = "SELECT * FROM cadastro_usuario WHERE id = $id";
//Envia a consulta para obter dados do paciente atual
$res = mysqli_query($mysqli, $sql);
//Armazena os dados obtidos
$row = mysqli_fetch_assoc($res);
$id = $row['id'];
$nome = $row['nome'];
$email = $row['email'];
$senha = $row['senha'];
}
?>
<header>
<h2>Editar Perfil</h2>
</header>
<article>
<form action="editarperfil.php" method="post">
<input type="hidden" name="id" value="<?php echo $id; ?>" />
<label for="nome">Nome</label>
<input type="text" name="nome" value="<?php echo $nome; ?>" /> <br><br>
<label for="email">Email</label>
<input type="text" name="email" autocomplete="off" value="<?php echo $email; ?>"/><br><br>
<label for="senha">Senha</label>
<input type="text" name="senha" value="<?php echo $senha; ?>" /><br><br>
<input type="submit" value="Salvar"/>
</form>
<a href="inicio.php">Voltar</a>
</article>
</section>