Home >Backend Development >PHP Tutorial >Source code implementation of Ecmall's own paging function_PHP tutorial

Source code implementation of Ecmall's own paging function_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-13 10:33:041225browse

In the secondary development of Ecmall, paging is essential. This system already has its own paging function. Let’s take a look at how to use this paging.

The following is a custom class for viewing order details. The key lies in the get_order_data() method, and the use of paging is also within this method. All the necessary comments are already there, so it should be easier to understand, so I won’t say more.

<?php
define('NUM_PER_PAGE', 15);        // 每页显示数量
class NowaMagicApp extends MallbaseApp  
{  
	public function index()  
	{
		/* 分页信息 */
        $page = $this->_get_page(NUM_PER_PAGE);
        $page['item_count'] = $stats['total_count'];
        $this->_format_page($page);
        $this->assign('page_info', $page);
     	$this->display('gorder.index.html');   
	}  
	
	/* 订单记录 */
    function orderslog()
    {
		$goods_id = empty($_GET['id']) ? 0 : intval($_GET['id']);
		if (!$goods_id)
        {
            $this->show_warning('Hacking Attempt');
            return;
        }
		
		$data = $this -> get_order_data($goods_id);
		
		if ($data === false)
        {
            return;
        }
		
		$this->assign('order', $data);
        $this->display('gorder.index.html');
    }
	
	function get_order_data($goods_id)
	{
		//clean_cache();
		$cache_server =& cache_server();
		//print_r($cache_server);
		$key = 'order_' . $goods_id;
		//$key = $this->_get_cache_id();
		$r = $cache_server->get($key);
		$cached = true;
		
		$db = &db();
		
		$sql = "select count(*)
				from shop_order a, shop_order_extm b, shop_order_goods c
				where a.order_id = b.order_id and b.order_id = c.order_id
				and c.goods_id = '".$goods_id."'
				and a.status != '11'
				and a.status != '0'
				and a.status != '20'
				order by a.add_time desc ";
		//echo $sql;
		$num = $db -> getone($sql);				//求出总记录数
		$page = $this->_get_page(NUM_PER_PAGE);	//每页显示的条数,默认是10条
		$page['item_count'] = $num;				// 返回一个数组$page,$page['limit']=0,10
		$this->_format_page($page);				//格式化分页
		
		$sql2 = "select a.order_id, a.buyer_name, a.add_time, a.status, b.phone_tel, b.phone_mob, b.consignee, c.price, c.quantity, c.goods_id 
				from shop_order a, shop_order_extm b, shop_order_goods c
				where a.order_id = b.order_id and b.order_id = c.order_id
				and c.goods_id = '".$goods_id."'
				and a.status != '11'
				and a.status != '0'
				and a.status != '20'
				order by a.add_time desc limit ".$page['limit'];
		
		$result = $db -> query($sql2);
		
		$this -> assign('page_info',$page); 	//向模板页传递页数
		$this -> assign('que',$sql2); 	//向模板页传递查询结果
		
		//$r = array();
		while($myrow = $db -> fetch_array($result))
		{
			$r[] = $myrow;
		}
		$cache_server->set($key, $r, 1);
		return $r;
	}
	
}
?>

Simplified as follows:

		Define("LIMIT",10);
		$goods_mod = & db('test');//构建实体模型(操作表)
        $count = 'select count(id) from test';
        $num = $goods_mod -> getone($count);//求出总记录数
        
        $page = $this->_get_page(LIMIT);//每页显示的条数,默认是10条
        $page['item_count'] = $num;// 返回一个数组$page,$page['limit']=0,10
        $this->_format_page($page);//格式化分页
        $sql = 'select id,title,content from test order by id desc limit '.$page['limit']; 
        $que = $goods_mod -> getAll($sql);//查询记录
        $this -> assign('page_info',$page); //向模板页传递页数
        $this -> assign('que',$que); //向模板页传递查询结果

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/752566.htmlTechArticleIn the secondary development of Ecmall, paging is essential. This system already has its own paging function. Let’s take a look at how to use this paging. The following is a custom class for checking...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn