📄 form_write.php
字号:
<?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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -