套中小型企业网站建设
源代码在线查看: message.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();
?>