-
Notifications
You must be signed in to change notification settings - Fork 0
/
consultaPessoa.php
37 lines (33 loc) · 971 Bytes
/
consultaPessoa.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
<?php
error_reporting(0);
require_once('verifica_login.php');
session_start();
?>
<?php
echo "<table class='table is-striped is-hoverable is-fullwidth' >";
echo "
<thead>
<tr>
<th> Usuário </th>
<th> Login </th>
<th> Senha </th>
</tr>
</thead>
";
// //$conexao = mysqli_connect()('localhost', 'root', '', 'prestare') or die('Erro no banco de dados');;
//$conexao = mysqli_connect()('localhost', 'root', 'R64S1m/JVu947bye', 'prestare') or die('Não conseguimos conectar no banco de dados!');
$sql = "select * from pessoas";
$resultado = mysqli_query($conexao, $sql) or die('Não foi possível realizar consulta');
while ($registro = mysqli_fetch_array($resultado)) {
$nome = $registro['userName'];
$login = $registro['userLogin'];
$password = $registro['userPassword'];
echo "<tr>";
echo "<td>" . "$nome" . "</td>";
echo "<td>" . "$login" . "</td>";
echo "<td>" . "$password" . "</td>";
echo "</tr>";
}
// mysqli_close($conexao);
echo "</table>";
?>