当前位置:首页 > CMS教程 > 帝国cms > 列表

帝国CMS-留言板加字段和验证码

发布:smiling 来源: PHP粉丝网  添加日期:2014-03-27 11:09:18 浏览: 评论:0 

1、在数据库的前缀名_enewsgbook表中添加您要显示的字段,比如我要加标题"gtitle"字段,可以用工具添加,也可以执行sql添加:ALTER TABLE 前缀名_enewsgbook ADD gtitle VARCHAR(100);

2、修改e/enews/gbookfun.php,第11行左右:

  1.  $name=RepPostStr(trim($add[name])); 
  2.         $email=RepPostStr($add[email]); 
  3.         $call=RepPostStr($add[call]); 
  4.         $lytext=RepPostStr($add[lytext]); 
  5.         $gtitle=RepPostStr(trim($add[gtitle]));  //增加的gtitle 
  6.         if(emptyempty($bid)||emptyempty($gtitle)||emptyempty($name)||emptyempty($email)||!trim 
  7. ($lytext))  //gtitle字段检测不允许为空 

第56行左右:

  1. $sql=$empire->query("insert into {$dbtbpre}enewsgbook(name,gtitle,email,`call`,lytime,lytext,retext,bid,ip,checked,userid,username) values('$name','$gtitle','$email','$call','$lytime','$lytext','','$bid','$ip','$br[checked]','$userid','$username');"); //插入字段记录 

3、修改e/data/template/gbooktemp.txt,第50行左右:

  1. $query="select lyid,name,gtitle,email,`call`,lytime,lytext,retext from {$dbtbpre}enewsgbook where bid='$bid' and checked=0";   //查询字段中添加gtitle 

4、修改e/class/t_functions.php,第2106行左右:

  1. $listtemp=str_replace("[!--lyid--]",$r['lyid'],$listtemp);//id 
  2.     $listtemp=str_replace("[!--lytext--]",nl2br($r['lytext']),$listtemp);//留言内容 
  3.     $listtemp=str_replace("[!--retext--]",nl2br($r['retext']),$listtemp);//回复 
  4.     $listtemp=str_replace("[!--lytime--]",format_datetime($r['lytime'],$formatdate),$listtemp); 
  5.     $listtemp=str_replace("[!--name--]",$r['name'],$listtemp); 
  6.     $listtemp=str_replace("[!--gtitle--]",$r['gtitle'],$listtemp); 

5、修改e/class/functions.php,第2934行左右添加

$listtemp_center=str_replace("[!--lyid--]","

Tags: 帝国CMS 字段 留言板 验证码

分享到: