📄 message.php
字号:
<?php
//====================================================
// FileName:message.php
// Summary: 处理显示信息,可显示错误列表,并有返回按钮
// Author: ice_berg16(寻梦的稻草人)
// CreateTime: 2004-10-23
// LastModifed:2004-10-24
// copyright (c)2004 ice_berg16@163.com
//====================================================
require_once("login.php");
require_once("../IBinit.php");
$title = !empty($_GET['title']) ? $_GET['title'] : "系统提示信息";
$msgList = !empty($_GET['msgList']) ? unserialize($_GET['msgList']) : "没有任何提示信息.";
$msgType = !empty($_GET['msgType']) ? $_GET['msgType'] : "error-msg";
$tpl = new SmartTemplate("admin/message.htm");
$tpl->assign("title", $title);
$tpl->assign("msgType", $msgType);
$tpl->assign("msgList", $msgList);
$tpl->output();
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -