destoon程序 禁止同一个会员发布重复信息
发布:smiling 来源: PHP粉丝网 添加日期:2014-06-05 16:44:19 浏览: 评论:0
DESTOON介绍:DESTOON® B2B网站管理系统是一套基于PHP+MySQL的开源B2B电子商务行业门户网站解决方案。
当前已发布会员、分站、商城、供应、求购、行情、公司、展会、文章、信息、品牌、团购、图库、专题、视频、下载、人才、知道等模型……
禁止同一个会员发布重复信息:
已供应为例子:打开文件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'] = '标题重复请重新填写';
Tags: destoon程序 发布重复信息
- 上一篇:destoon搬家教程
- 下一篇:Destoon的IE错位解决方法
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)