-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
226 lines (203 loc) · 9.22 KB
/
index.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<?php
session_start();
require_once 'Funcoes.php';
$con = new Funcoes("localhost", 'mitgard', 'root','', 'utf8');
$dados = $con->BuscarPersonagens();
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.5">
<link rel="icon" href="icon.jfif">
<title>Mitgard_Heroes</title>
<link rel="stylesheet" href="CSS/index.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
</head>
<body>
<div id="topo-pagina">
<form method="POST">
<h6 id="buscar">Buscar</h6>
<input type="text" name="buscar" id="buscar">
</form>
<a href="Cadastrar.php">Cadastre-se</a>
<?php if (isset($_SESSION['id_user']) || isset($_SESSION['id_master'])) { ?>
<a href="sair.php">Sair</a>
<?php } else {
?> <a href="Entrar.php">Logar</a><?php }
?>
<?php if (isset($_SESSION['id_master'])) {
?> <a href="criar_personagem.php">Criar</a> <?php
} else {
}
?>
<a href="Auxiliar_de_batalha.php">Auxiliar de Batalha</a>
<a href="teste_sugestao_instatenea.php">Teste sugestão</a>
</div>
<a href="index.php?buscar_melhores"><span><i class="fab fa-ethereum red"></i></span></a>
<?php if (isset($_GET['buscar_melhores']) && !isset($_POST['buscar'])) {
?><a href="index.php"><span><i class="fas fa-arrow-left"></i></span></a> <?php ?>
<table class="table table-striped ">
<thead class="thead-dark">
<tr id="topo">
<th scope="col"></th>
<th scope="col">Nome</th>
<th scope="col">PVP</th>
<th scope="col">Mundo</th>
<th scope="col">Chefe</th>
<th scope="col"></th>
<th scope="col"></th>
</tr> </thead> <?php
$ava = $con->BuscarPersonagensPorAvaliacao();
foreach ($ava as $v) {
?> <tr>
<td id="s"><img src="imagens/<?php echo $v['nome_imagem'] ?>" id="imagem"></td>
<td><?php echo $v['nome'] ?></td><?php
?><td maxlength="2"><?php
$p = substr($v['avaliacao'], 0, 4);
echo $p;
?></td>
<td><?php
$s = substr($v['mun'], 0, 4);
echo $s;
?></td>
<td><?php
$t = substr($v['che'], 0, 4);
echo $t;
?></td>
<td><a href="votar.php?id_personagem=<?php echo $v['id']; ?>">Votar</a></td>
<td><a href="personagem.php?id_personagem=<?php echo $v['id']; ?>">Ver</a></td></tr> <?php }
?> </table> <?php
} else {
if (isset($_POST['buscar']) && isset($_GET['buscar_melhores'])) {
?><a href="index.php"><span><i class="fas fa-arrow-left"></i></span></a> <?php
$buscar = addslashes(ucwords($_POST['buscar']));
$dao = $con->BuscarPersonagensPorNome($buscar);
if (empty($dao) || $con->BuscarPersonagensPorNome($buscar) == false) {
echo "<h5>Não foi possivel encontrar</h5>";
}
?><table class="table table-striped">
<tr id="topo" onmouseenter="mudar()" onmouseout="voltar()">
<thead class="thead-dark">
<th scope="col"></th>
<th scope="col">Nome</th>
<th scope="col">PVP</th>
<th scope="col">Mundo</th>
<th scope="col">Chefe</th>
<th scope="col"></th>
<th scope="col"></th>
</tr> </thead><?php
foreach ($dao as $v) {
?> <tr>
<td id="s"><img src="imagens/<?php echo $v['nome_imagem'] ?>" id="imagem"></td>
<td><?php echo $v['nome'] ?></td><?php ?><td maxlength="2"><?php
$p = substr($v['avaliacao'], 0, 4);
echo $p;
?></td>
<td><?php
$s = substr($v['mun'], 0, 4);
echo $s;
?></td>
<td><?php
$t = substr($v['che'], 0, 4);
echo $t;
?></td>
<td><a href="votar.php?id_personagem=<?php echo $v['id']; ?>">Votar</a></td>
<td><a href="personagem.php?id_personagem=<?php echo $v['id']; ?>">Ver</a></td></tr> <?php
}
}
?> </table> <?php
}
if (isset($_POST['buscar']) && !isset($_GET['buscar_melhores'])) {
?><a href="index.php"><i class="fas fa-arrow-left"></i></a> <?php
$buscar = addslashes(ucwords($_POST['buscar']));
$dado = $con->BuscarPersonagensPorNome($buscar);
if (empty($dado) || $con->BuscarPersonagensPorNome($buscar) == false) {
echo "<h5>Não foi possivel encontrar</h5>";
}else{
?><table class="table table-striped">
<thead class="thead-dark">
<tr id="topo" onmouseenter="mudar()" onmouseout="voltar()">
<th scope="col"></th>
<th scope="col">Nome</th>
<th scope="col">PVP</th>
<th scope="col">Mundo</th>
<th scope="col">Chefe</th>
<th scope="col"></th>
<th scope="col"></th>
</tr> </thead><?php
foreach ($dado as $v) {
?> <tr>
<td id="s"><img src="imagens/<?php echo $v['nome_imagem'] ?> " id="imagem"></td>
<td><?php echo $v['nome'] ?></td><?php ?><td maxlength="2"><?php
$p = substr($v['avaliacao'], 0, 4);
echo $p;
?></td>
<td><?php
$s = substr($v['mun'], 0, 4);
echo $s;
?></td>
<td><?php
$t = substr($v['che'], 0, 4);
echo $t;
?></td>
<td><a href="votar.php?id_personagem=<?php echo $v['id']; ?>">Votar</a></td>
<td><a href="personagem.php?id_personagem=<?php echo $v['id']; ?>">Ver</a></td> <?php }
?> </table> <?php } } elseif (!isset($_GET['buscar_melhores'])) { ?>
<table class="table table-striped">
<thead class="thead-dark">
<tr>
<th scope="col"></th>
<th scope="col">Nome</th>
<th scope="col">PVP</th>
<th scope="col">Mundo</th>
<th scope="col">Chefe</th>
<th scope="col"></th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<tr>
<?php
foreach ($dados as $v) {
?><tr>
<td id="s"><img src="imagens/<?php echo $v['nome_imagem'] ?>" id="imagem"></td>
<td><?php echo $v['nome'] ?></td><?php ?><td maxlength="2"><?php
$p = substr($v['avaliacao'], 0, 4);
echo $p;
?></td>
<td><?php
$s = substr($v['mun'], 0, 4);
echo $s;
?></td>
<td><?php
$t = substr($v['che'], 0, 4);
echo $t;
?></td>
<td><a href="votar.php?id_personagem=<?php echo $v['id']; ?>">Votar</a></td>
<td><a href="personagem.php?id_personagem=<?php echo $v['id']; ?>">Ver</a></td></tr>
<?php } ?>
</th>
</tbody>
</table>
<script>
function mudar() {
var tr = document.getElementById('topo');
tr.style.background = 'red';
}
function voltar() {
var tr = document.getElementById('topo');
tr.style.background = 'gray !important';
}
var imagem = document.getElementsByTagName('img');
console.log(imagem)
if(imagem.width > 100){
alert(`Ìmagem errada`)
}
</script>
<?php
}
?>
</body>
</html>