注册
登录
首页
虚拟主机
云服务器
域名注册
产品及服务
帮助中心
客服直通车
客户展示
付款方法
帮助中心_DZ动力
»
常见技术问题集锦
» 用户搜索加入身高区间
返回列表
1
#
打印
字体大小:
t
T
admin
发表于 2014-11-21 13:32
完美运行环境,专业运维支持,高速线路接入,超值增值服务——尽在DZ动力!
[Discuz!]
用户搜索加入身高区间
搜索用户的界面身高搜索只能按固定值搜索,很多站长希望像年龄一样能按区间搜索,修改方法如下:
修改/source/language/home/lang_template.php
找到1403行
'age_segment' => '年龄段',
复制代码
下面加入
'height_segment' => '身高区间',
复制代码
修改/source/include/spacecp/spacecp_search.php
第65行
$havefield = 0;
复制代码
上面
插入
$startheight = $endheight = 0;
if($_GET['endheight']) {
$endheight = intval($_GET['endheight']);
}
if($_GET['startheight']) {
$startheight = intval($_GET['startheight']);
}
if($startheight && $endheight && $endheight > $startheight) {
$wherearr[] = 'sf.'.DB::field('height', $startheight, '>=').' AND sf.'.DB::field('height', $endheight, '<=');
} else if($startheight && empty($endheight)) {
$wherearr[] = 'sf.'.DB::field('height', $startheight, '>=');
} else if(empty($startheight) && $endheight) {
$wherearr[] = 'sf.'.DB::field('height', $endheight, '<=');
}
复制代码
还是这个文件,第82行左右搜索
if($havefield || $startage || $endage) {
复制代码
替换为
if($havefield || $startage || $endage|| $startheight || $endheight) {
复制代码
修改template/default/home/spacecp_search.htm
第272行左右搜索
<tr>
<th>{lang upload_avatar}</th>
复制代码
注意
在<tr>上面
插入以下代码:
<tr>
<th>{lang height_segment}</th>
<td><input type="text" name="startheight" value="" size="10" class="px" style="width: 114px;" /> ~ <input type="text" name="en
dheight" value="" size="10" class="px" style="width: 114px;" /></td>
</tr>
复制代码
收藏
分享
返回列表
[收藏此文章]
[关注此文章的新评论]
[通过 QQ、MSN 分享给朋友]
Verydz 2001-2024
京ICP证110025号
关于我们
付款方式
联系我们
增值电信业务经营许可证:京B2-20140034号 |
京公海网安备110108000962号