-
Notifications
You must be signed in to change notification settings - Fork 0
/
editarperfil.php
45 lines (35 loc) · 1.04 KB
/
editarperfil.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
<?php
require('conexao.php');
require('autentica.php');
$id = $_POST['id'];
$nome = $_POST['nome'];
$email = $_POST['email'];
$senha = $_POST['senha'];
if(isset($id)){
//Obtém valor enviado via GET
$id = $_GET['id'];
$sql = "SELECT id, nome, email, senha FROM cadastro_usuario";
//Envia código SQL para o MySQL
$res = mysqli_query($mysqli, $sql);
$row = mysqli_fetch_assoc($res);
$id = $row['id'];
$nome = $row['nome'];
$email = $row['email'];
$senha = $row['senha'];
}
?>
<header>
<h2>Seu perfil</h2>
</header>
<section>
<article>
<table border="1">
<tr>
<td>id</td>
<td>Nome</td>
<td>Email</td>
<td>Senha</td>
</tr>
</article>
</section>
<a href="inicio.php">Voltar</a>