error.php
来自「套中小型企业网站建设」· PHP 代码 · 共 22 行
PHP
22 行
<?php
//====================================================
// FileName:error.php
// Summary: 处理显示错误信息,显示单一错误信息
// Author: ice_berg16(寻梦的稻草人)
// CreateTime: 2004-10-23
// LastModifed:2004-10-24
// copyright (c)2004 ice_berg16@163.com
//====================================================
require_once("../IBinit.php");
$title = !empty($_GET['title']) ? $_GET['title'] : "系统提示信息";
$message = !empty($_GET['message']) ? $_GET['message'] : "没有任何提示信息.";
$tpl = new SmartTemplate("admin/error.htm");
$tpl->assign("title", $title);
$tpl->assign("message", $message);
$tpl->output();
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?