-
Notifications
You must be signed in to change notification settings - Fork 0
/
mostraUsuario.php
121 lines (119 loc) · 4.3 KB
/
mostraUsuario.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<html>
<body bgcolor=#d8dfea>
<?php
//Chamado do cabeçalho Login da pagina
include 'setupCabecalhoLogin.php';
echo "</br></br>";
//Chamado do cabeçalho da pagina
include 'setupCabecalho.php';
//Chamado do setup pagina
include 'setupPagina.php';
//Chamado do conexão da pagina
include 'setupConectaBanco.php';
?>
<center>
<table border="tabuleiroCabecalhoUsuarios" align='center' bgcolor=#afbdd4>
<tr>
<td style='width:67px;height:34px;'>
<center style="width:67px;">
ID
</center>
</td>
<td style='width:167px;height:34px;'>
<center>
Nome Usuario
</center>
</td>
<td style='width:167px;height:34px;'>
<center>
Usuario
</center>
</td>
<td style='width:330px;height:34px;'>
<center>
E-Mail
</center>
</td>
<td style='width:90px;height:34px;'>
<center>
Data Nascimento
</center>
</td>
<td style='width:69px;height:62px;'>
<center>
Remover
</center>
</td>
</tr>
</table>
</center>
<?php
$query = "SELECT id_Usuario, nome_Usuario, usuario_Usuario, email_Usuario, dataNasc_Usuario, status_Usuario FROM usuario";
$result = mysqli_query($link, $query);
if(empty($result) === FALSE)
{
while (list($id_Usuario, $nome_Usuario, $usuario_Usuario, $email_Usuario, $dataNasc_Usuario, $status_Usuario) = mysqli_fetch_row($result))
{
echo
"
<center>
<table border='tabuleiroUsuarios' align='center' bgcolor=#afbdd4>
<tr>
<td style='width:67px;height:34px;'>
<center>
".
$id_Usuario
."
</center>
</td>
<td style='width:167px;height:34px;'>
<center>
".
$nome_Usuario
."
</center>
</td>
<td style='width:167px;height:34px;'>
<center>
".
$usuario_Usuario
."
</center>
</td>
<td style='width:330px;height:34px;'>
<center>
".
$email_Usuario
."
</center>
</td>
<td style='width:90px;height:34px;'>
<center>
".
$dataNasc_Usuario
."
</center>
</td> ";
if($status_Usuario == 0)
{
echo "<form name='comentar' action='envioUsuarioRemove.php?idUsuario=".$id_Usuario."' method='post' >
<td style='width:69px;height:62px;'>
<input type='submit' value ='Remover'align = 'center' margin='0' style='width:69px;height:62px;'>
</td>
</form>";
}
else
{
echo "<td style='width:69px;height:62px;'>
<center>Demitido</center>
</td>";
}
echo "</tr>
</table>
</center>
";
}
}
?>
</body>
</html>