-
Notifications
You must be signed in to change notification settings - Fork 0
/
logs.php
47 lines (41 loc) · 1.26 KB
/
logs.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
<?php
include "database/connect.php";
require "database/model.php";
$db = new DB_Model();
$rows = $db->read($conn, 'gprs', 'id DESC', '200');
?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/app.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OLRMS TCP</title>
</head>
<body>
<div class='no-more-tables'>
<table width=100% class='table-bordered table-striped'>
<thead>
<th>Remote Address</th>
<th>Port</th>
<th>GPRS Data</th>
<th>Received</th>
</thead>
<tbody>
<?php
foreach ($rows as $row) {
?>
<tr>
<td data-title='Remote Address'><?php echo $row->remote_address; ?></td>
<td data-title='Port'><?php echo $row->remote_port; ?></td>
<td data-title='GPRS Data'><?php echo $row->gprs_data; ?></td>
<td data-title='Received'><?php echo $row->date_created; ?></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</body>
</html>