📄 status_display.php
字号:
<!-- This displays the status of the log and registration in the admin area of the log -->
<table width="100%" bgcolor="#FFFFCC" align="center">
<tr>
<td width="225">
<div id="status">
<?PHP
echo "</td><td width=\"225\" align=\"center\">";
//Display log status
echo "<strong>Log Status:</strong>";
if($log_status == 1)
{
echo "<font color=\"green\"> Online</font>";
}
else
{
echo "<font color=\"red\"> Offline</font>";
}
echo "</td><td width=\"225\" align=\"center\">";
//Display Registration status
echo "<div id=\"logstaus\" align=\"center\"><strong>Registration Status:</strong>";
if($reg_status == 1)
{
echo "<font color=\"red\"> Enabled</font>";
}
else
{
echo "<font color=\"green\"> Disabled</font></div>";
}
echo "</td>";
?>
</div>
<td width="225">
</td>
</tr>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -