default.php
来自「EonianBai 精美留言本 学php还不过2个星期,难免有所不足.发现BU」· PHP 代码 · 共 22 行
PHP
22 行
<?php
session_start();
require_once 'require.php';
try
{
if ($web_of == 'off')
{
throw new Exception('网站已关闭,请捎后登陆.谢谢');
}
}
catch (Exception $e)
{
html_header('首页');
html_info('错误提示','on',$e->getMessage(),'off','1','');
html_footer();
exit;
}
html_header('首页');
html_info('最新留言列表','off','','off','1','');
html_footer();
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?