bbsmailmsg.php

来自「bbs server linux平台下软件源码」· PHP 代码 · 共 31 行

PHP
31
字号
<?php	/**	 * This file mail message log to current user.	 * $Id: bbsmailmsg.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");		$title = sprintf("[%s] 所有讯息备份", strftime("%b %e %H:%M"));		if (bbs_mail_file($currentuser["userid"], $filename, 				$currentuser["userid"], $title, 1) == false)		{			html_error_quit("讯息备份寄回信箱失败");		}		$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 + -
显示快捷键?