-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtabela-logs.php
More file actions
34 lines (33 loc) · 1.09 KB
/
tabela-logs.php
File metadata and controls
34 lines (33 loc) · 1.09 KB
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
<?php
require_once('autoload.php');
include_once('autoload/DAO/logDAO.php');
include("cabecalho.php");
?>
<section class="section-table">
<div class="container">
<h2>Logs de Conexões</h2>
<table class="table table-striped table-bordered table-responsive table-mt4">
<thead class="thead-mt4">
<tr class="tr-mt4">
<th scope="col">Resultado</th>
<th scope="col">Data/Hora</th>
<th scope="col">ID</th>
</tr>
</thead>
<tbody>
<?php
$logLista = listaLogs($conexao2);
foreach($logLista as $l) :
?>
<tr class="tr-mt4">
<th scope="row"><?= $l['resultado']?></th>
<td><?= $l['createdLog']?></td>
<td><?= $l['idDispositivo']?></td>
</tr>
<?php endforeach ?>
</tbody>
</table>
<a href="/mt4_php/"><button type="button" class="btn btn-secondary">Voltar</button></a>
</div>
</section>
<?php include("rodape.php"); ?>