bbscloak.php
来自「bbs server linux平台下软件源码」· PHP 代码 · 共 34 行
PHP
34 行
<?php /** * This file lists boards to user. * $Id: bbscloak.php,v 1.2 2003/02/13 12:40:19 kcn Exp $ */ require("funcs.php"); if ($loginok !=1 ) html_nologin(); else { html_init("gb2312"); if (!strcasecmp($currentuser["userid"],"guest")) { html_error_quit("guest不能使用隐身"); } if (!($currentuser["userlevel"]&BBS_PERM_CLOAK)) { html_error_quit("错误的参数"); }?><body><?php bbs_update_uinfo("invisible", !$currentuinfo["invisible"]); if (!$currentuinfo["invisible"]) echo("开始隐身!"); else echo("隐身已经停止!");?><br/><a href="javascript:history.go(-1)">快速返回</a><?php html_normal_quit(); }?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?