-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.php
40 lines (36 loc) · 1.04 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
<?php
include "main.php";
$servers = $restarter->getServers();
?><html>
<head>
<title>Restarter</title>
<script src="assets/js/jquery.min.js" type="text/javascript"></script>
<script src="assets/js/main.js" type="text/javascript"></script>
<link href="assets/css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table align="center">
<tr>
<th>Ime servera</th>
<th>IP Adresa</th>
<th width="100">Broj igraca</th>
<th width="90">Status</th>
<th class="debug">debug</th>
</tr>
<?php
foreach ($servers as $server) {
echo <<<OUT
<tr rel="{$server['ip']}" class="red" src="{$server['auth']}" id="{$server['serverid']}">
<td>{$server['name']}</td>
<td>{$server['ip']}</td>
<td class="center"><img src="assets/images/players-loader.gif" /></td>
<td class="center"><img src="assets/images/status-loader.gif" /></td>
<td class="debug"></td>
</tr>
OUT;
}
?>
</table>
<p id="removedServersNotif" class="labelText">Uklonjeno <span></span> servera sa liste koji nisu dodati na GT.rs!</p>
</body>
</html>