<?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>
|