首页 > 代码库 > phpcms 按价格、按销量、按时间等排序实现思路
phpcms 按价格、按销量、按时间等排序实现思路
大体思路是在链接中加入指定排序的参数,例如我们使用get中的order作为排序参数:
order=views 人气;order=sells 效率;order=pirce 按价格;
那么这三个排序按钮的链接举例如下:
1
2
3
|
< a href = "/index.php?m=content&c=index&a=lists&order=views" >按人气</ a > < a href = "/index.php?m=content&c=index&a=lists&order=sells" >按销量</ a > < a href = "/index.php?m=content&c=index&a=lists&order=price" >按价格</ a > |
然后在对应的php程序文件或模板中获取指定排序参数:
1
|
$order = isset( $_GET [ ‘order‘ ]) ? trim( $_GET [ ‘order‘ ]). ‘ desc‘ : ‘sells desc‘ ; |
然后在模板文章列表标签中指定排序:
1
2
3
|
{pc:content action="lists" catid="$catid" num="15" order="$order"} ... {/pc} |
phpcms 按价格、按销量、按时间等排序实现思路
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。