码迷,mamicode.com
首页 > 其他好文 > 详细

微擎分页

时间:2020-04-03 15:14:29      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:sele   highlight   ice   title   rom   where   tca   play   fetch   

	    	$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 是页面总数

微擎分页

标签:sele   highlight   ice   title   rom   where   tca   play   fetch   

原文地址:https://www.cnblogs.com/xiong-hua/p/12626522.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!