form_write.php
来自「EonianBai 精美留言本 学php还不过2个星期,难免有所不足.发现BU」· PHP 代码 · 共 26 行
PHP
26 行
<?php
session_start();
require_once 'require.php';
try
{
if ($web_of == 'off')
{
throw new Exception('网站已关闭,请捎后登陆.谢谢');
}
if ($form_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','','on','1','');
html_footer();
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?