帝国cms数据库配置文件是哪个?
帝国CMS数据库配置文件e/class/config.php,对于帝国7.0以后的版本,数据库路径就是 e/config/config.php
一、变量列表
表单提交地址:/e/enews/index.php
classid:[!--classid--]
id:[!--id--]
enews:AddPl
repid:0
username:用户名输入框
password:密码输入框
显示验证码:
nomember:匿名发表
saytext:评论内容
二、表单范例
代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
<script>
function CheckPl(obj)
{
if(obj.saytext.value==”")
{
alert(“您没什么话要说吗?”);
obj.saytext.focus();
return false;
}
return true;
}
</script>

以上就是帝国CMS数据库配置文件是哪个的详细内容,更多请关注php中文网其它相关文章!