微擎分页
Posted xiong-hua
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微擎分页相关的知识,希望对你有一定的参考价值。
$tcate = $_GPC[‘cate‘]; $page = ((!(empty($_GPC[‘page‘])) ? intval($_GPC[‘page‘]) : 1)); $pagesize = ((!(empty($_GPC[‘pagesize‘])) ? intval($_GPC[‘pagesize‘]) : 10)); $p= ($page-1)*$pagesize; $total = pdo_fetchcolumn(‘select count(id) from ‘.tablename(‘ewei_shop_goods‘)."where tcate= ‘$tcate‘ and status = 1"); $goods = pdo_fetchall("select id,title,thumb,productprice,marketprice,total from ".tablename(‘ewei_shop_goods‘)."where tcate= ‘$tcate‘ and status=1 order by displayorder LIMIT $p,$pagesize"); $pager = pagination($total, $page, $pagesize);
$page 是页码
$pagesize 是页面容量
$taotal 是页面总数
以上是关于微擎分页的主要内容,如果未能解决你的问题,请参考以下文章