forked from Worzaii/Mafiaspill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
modkilletvis.php
36 lines (32 loc) · 929 Bytes
/
modkilletvis.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
<?php
error_reporting(true);
include("core.php");
startpage("Se alle spillere som er modkillet");
/*Scriptet starter*/
$moddetvis = $db->query("SELECT * FROM `users` WHERE `moddet` = '1' ORDER BY `id` ASC");
?>
<table class="table">
<tr>
<th colspan="7">Spillere som er modkillet (Og info om dem)</th>
</tr>
<tr>
<td colspan="2">Spiller:</td>
<td>Grunn</td>
<td>Modkillet av</td>
<td>Sist aktiv</td>
<td>Registrert</td>
<td>Notat</td>
</tr>
<?php
while($r = mysqli_fetch_object($moddetvis)){
echo '
<tr>
<td style="text-align:center;width:60px;"><span style="font-size:20px;font-weight:bold;">#'.$r->id.'</td><td>'.user($r->id).'</td><td>'.$r->modgrunn.'</td><td>'.$r->modav.'</td><td>'.date("H.i.s | d-m-Y",$r->lastactive).'</td><td>'.date("H.i.s | d-m-Y",$r->regdato).'</td><td>'.$r->note.'</td>
</tr>
';
}
?>
</table>
<?php
endpage();
?>