-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathfedjail.php
73 lines (72 loc) · 1.92 KB
/
fedjail.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
<?php
declare(strict_types=1);
/**
* MCCodes v2 by Dabomstew & ColdBlooded
*
* Repository: https://github.com/davemacaulay/mccodesv2
* License: MIT License
*/
global $db, $h;
require_once('globals.php');
$q =
$db->query(
'SELECT `fed_userid`, `fed_days`, `fed_reason`, `fed_jailedby`,
`u`.`username`, `u2`.`username` AS `jailer`
FROM `fedjail` AS `f`
LEFT JOIN `users` AS `u`
ON `f`.`fed_userid` = `u`.`userid`
LEFT JOIN `users` AS `u2`
ON `f`.`fed_jailedby` = `u2`.`userid`
ORDER BY `f`.`fed_days` ASC');
echo "<b>Federal Jail</b><br />
If you ever cheat the game your name will become a permanent
part of this list...<br />
<table cellspacing='1' class='table'>
<tr style='background:gray;'>
<th>Who</th>
<th>Days</th>
<th>Reason</th>
<th>Jailer</th>
</tr>";
while ($r = $db->fetch_row($q))
{
echo "<tr>
<td>
<a href='viewuser.php?u={$r['fed_userid']}'>{$r['username']}</a>
</td>
<td>{$r['fed_days']}</td>
<td>{$r['fed_reason']}</td>
<td>
<a href='viewuser.php?u={$r['fed_jailedby']}'>{$r['jailer']}</a>
</td>
</tr>";
}
$db->free_result($q);
echo '</table>';
$q =
$db->query(
'SELECT `userid`, `username`, `mailban`, `mb_reason`
FROM `users`
WHERE `mailban` > 0
ORDER BY `mailban` ASC');
echo "<b>Mail Ban</b><br />
If you ever swear or do other bad things with mail,
your name will become a permanent part of this list...<br />
<table width='100%' cellspacing='1' class='table'>
<tr style='background:gray;'>
<th>Who</th>
<th>Days</th>
<th>Reason</th>
</tr>";
while ($r = $db->fetch_row($q))
{
echo "
<tr>
<td><a href='viewuser.php?u={$r['userid']}'>{$r['username']}</a></td>
<td>{$r['mailban']}</td>
<td>{$r['mb_reason']}</td>
</tr>";
}
$db->free_result($q);
echo '</table>';
$h->endpage();