destoon/5.0/6.0/7.0程序 如何禁止网站会员发布重复信息

 



禁止DESTOON会员发布重复信息:

  已供应为例子:打开文件module/sell/sell.class.php  在代码
function pass($post)前面增加一个title_exists函数:

 
function title_exists($title) {
  $condition = “title=’$title'”;
  return $this->db->get_one(“SELECt itemid FROM {$this->table} WHERe $condition”);
}

 

 


if($post[‘totime’])这前面添加

 
if(strlen($post[‘title’]) < 3) return $this->_(lang(‘message->pass_title’));
if(!$this->itemid && $this->title_exists($post[‘title’])) return $this->_(lang(‘message->pass_chongfu’));

最后在找到lang\zh-cn\message.inc.php添加一行   $L[‘pass_chongfu’] = ‘标题重复请重新填写’;

实用干货原创整理,转载请注明九九主题出处!本站所有资源均可以下载,qq一键登录购买SVIP更实惠,免注册扫码支付更方便。
九九主题 » destoon/5.0/6.0/7.0程序 如何禁止网站会员发布重复信息