-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlistarPessoa.php
43 lines (38 loc) · 1.08 KB
/
listarPessoa.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
<?php
include_once('includes/componentes/cabecalho.php');
include_once('includes/logica/functions.php');
include_once('includes/logica/conecta.php');
session_start();
if(!isset($_SESSION['logado']))
{
header('location:login.php');
}
?>
<title>Bolsacripto</title>
</head>
<body>
<?php require('includes/componentes/header.php') ?>
<main>
<?php
// $email = $_SESSION['email'];
$usuarios = listarPessoa($conexao);
if(empty($usuarios)){
?>
<section>
<p>Não há usuários cadastrados.</p>
</section>
<?php
}
foreach($usuarios as $usuario){
?>
<section>
<p>Nome: <?php echo $usuario['nome']; ?></p>
<p>Email <?php echo $usuario['email']; ?></p>
<p>Imagem: <img src="imagens/<?php echo $usuario['imagem'];?>" width='100px' height='100px'/></p>
</section>
<?php
}
?>
</main>
</body>
</html>