bbsdelmsg.php
来自「bbs server linux平台下软件源码」· PHP 代码 · 共 27 行
PHP
27 行
<?php /** * This file delete current user's message log. * $Id: bbsdelmsg.php,v 1.1 2002/09/22 11:29:12 flyriver Exp $ */ require("funcs.php"); if ($loginok != 1) html_nologin(); else { html_init("gb2312"); if ($currentuser["userid"]=="guest") html_error_quit("匆匆过客不能处理讯息,请先登录"); $filename = bbs_sethomefile($currentuser["userid"],"msgfile"); if (file_exists($filename)) unlink($filename); $filename = bbs_sethomefile($currentuser["userid"], "msgcount"); if (file_exists($filename)) unlink($filename);?><body>已经删除所有讯息备份<a href="javascript:history.go(-2)">返回</a><?php html_normal_quit(); }?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?