-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmostrarPessoa.php
70 lines (60 loc) · 1.93 KB
/
mostrarPessoa.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<?php
include_once('includes/componentes/cabecalho.php');
include_once('includes/componentes/header.php');
include_once('includes/logica/funcoes_pessoa.php');
include_once('includes/logica/conecta.php');
?>
<title>Listar Usuário</title>
</head>
<body>
<body>
<main>
<h2> Usuário Logado: <?php echo $_SESSION['nome']; ?> </h2>
<h3> Pesquisa de Usuários </h3>
<?php
if(empty($pessoas)){
?>
<section>
<p>Não há usuários cadastrados.</p>
</section>
<?php
}
else
{
foreach($pessoas as $pessoa){
?>
<section>
<p>Nome: <?php echo $pessoa['nome']; ?></p>
<p>Email <?php echo $pessoa['email']; ?></p>
<p>CPF: <?php echo $pessoa['cpf']; ?></p>
<p>Imagem: <img src="../../imagens/<?php echo $pessoa['imagem'];?>" width='100px' height='100px'/></p>
<form action="/exemplo_funcoes_PDO/includes/logica/logica_pessoa.php" method="post">
<button type="submit" name="editar" value="<?php echo $pessoa['codpessoa']; ?>"> Editar </button>
<button type="submit" name="deletar" value="<?php echo $pessoa['codpessoa']; ?>" onclick = "return confirma_excluir()"> Deletar </button>
</form>
<br><br>
</section>
<?php
}
}
?>
</main>
<?php require('includes/componentes/footer.php');?>
</body>
<script type="text/javascript">
function confirma_excluir()
{
resp=confirm("Confirma Exclusão?")
if (resp==true)
{
return true;
}
else
{
return false;
}
}
</script>
</html>