|
发表于 2008-8-21 16:45:57
|
显示全部楼层
在show_error()所在的文件里自定义个
show_message()函数
function show_message($message, $url='', $t=3)
{
require(APPPATH . 'views/message.html') ;
exit;
}
然后自己定制一个message.html文件来显示信息就可以了
<html>
<head>
<title>Error</title>
<meta http-equiv="Content-Type" c />
<style type="text/css">
body {
background-color: #fff;
margin: 40px;
font-family: Lucida Grande, Verdana, Sans-serif;
font-size: 12px;
color: #000;
}
#content {
border: #999 1px solid;
background-color: #fff;
padding: 20px 20px 12px 20px;
text-align:center;
}
h1 {
font-weight: normal;
font-size: 14px;
color: #990000;
margin: 0 0 4px 0;
}
</style>
<?php if($url): ?>
<meta http-equiv="refresh" c>
<?php endif; ?>
</head>
<body>
<div id="content">
<?php if($url): ?>
<?=$message ?>
<br />
<a href="<?=$url?>">【<?=$t ?>秒钟后页面没有自动跳转,请手动点击点击返回】</a>
<?php else: ?>
<?php echo $message; ?>
<br />
<a href="javascript:window.history.go(-1);">【点击返回】</a><br />
<?php endif; ?>
</div>
</body>
</html> |
|