hxp
2025-06-04 f4a514d5ac952110da846636ecbb9de951eaf3d2
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
<?php
include_once "/language/lang.php";
include_once "/Common/CommFunc.php";
 
\CommFunc\SessionStart();
 
$resultInfo = $_POST;
$ResultMsg = $resultInfo["ResultMsg"];
 
?>
 
<!DOCTYPE html>
<html>
 
<head>
    <meta charset="utf-8">
</head>
 
<body>
    <p />
    <?php
    $forbidTalkList = $ResultMsg["forbidTalkList"];
    $forbidTalkCount = count($forbidTalkList);
    echo \Lang\gettext("禁言列表") . " :  " . \Lang\gettext("总数") . ": " . $forbidTalkCount;
    ?>
    <table cellspacing='1' cellpadding='1' width='200' border='1'>
        <tbody align="center">
            <tr>
                <td><?php echo \Lang\gettext("编号"); ?></td>
                <td><?php echo \Lang\gettext("账号/IP"); ?></td>
            </tr>
            <?php
            for ($i = 0; $i < $forbidTalkCount; $i++) {
                $forbidTag = $forbidTalkList[$i];
                echo "<tr>";
                echo "<td>" . ($i + 1) . "</td>";
                echo "<td>" . $forbidTag . "</td>";
                echo "</tr>";
            }
            ?>
        </tbody>
    </table>
    <hr />
    <?php
    $forbidLoginList = $ResultMsg["forbidLoginList"];
    $forbidLoginCount = count($forbidLoginList);
    echo \Lang\gettext("封禁列表") . " :  " . \Lang\gettext("总数") . ": " . $forbidLoginCount;
    ?>
    <table cellspacing='1' cellpadding='1' width='200' border='1'>
        <tbody align="center">
            <tr>
                <td><?php echo \Lang\gettext("编号"); ?></td>
                <td><?php echo \Lang\gettext("账号/IP"); ?></td>
            </tr>
            <?php
            for ($i = 0; $i < $forbidLoginCount; $i++) {
                $forbidTag = $forbidLoginList[$i];
                echo "<tr>";
                echo "<td>" . ($i + 1) . "</td>";
                echo "<td>" . $forbidTag . "</td>";
                echo "</tr>";
            }
            ?>
        </tbody>
    </table>
</body>
 
</html>