Home >php教程 >PHP源码 >PHP简单分页函数

PHP简单分页函数

PHP中文网
PHP中文网Original
2016-05-25 17:12:161079browse

PHP简单分页函数

 function getask(){
 	$sql = "select * from cms_ask where ansower <> &#39; &#39; ";
	//这里要改成方法
	$q_sq = mysql_query($sql);
	$count = mysql_num_rows($q_sq);
	$page_size = 8;
	$page_current = isset($GLOBALS[&#39;page&#39;]) ? intval($GLOBALS[&#39;page&#39;]) : 1;
	$page_count = ceil($count / $page_size);
	$page_start = $page_current - 4;
	$page_end = $page_current + 4;
	if ($page_current < 5) {
		$page_start = 1;
		$page_end = 5;
	}
	if ($page_current > $page_count - 4) {
		$page_start = $page_count - 8;
		$page_end = $page_count;
	}
	if ($page_start < 1)
		$page_start = 1;
	if ($page_end > $page_count)
		$page_end = $page_count;
	$pagebar = "";
	
	
	$sql = "select * from cms_ask  where ansower <> &#39; &#39; order by id desc limit " . (($page_current - 1) * $page_size) . "," . $page_size;

	$row=$this -> user -> getall("$sql");
 	foreach($row as $v){
 		echo &#39;问:&#39;.$v["question"].&#39;答:&#39;.$v["ansower"].date("Y-m-d H:i:s",$v["postTime"]).&#39;&#39;;
 		
  	}
 	
 	$pagebar .= "";

	
		$pagebar .= "";
		if ($page_current != 1) {
			 $pagebar .= &#39;FIRST&#39;;
			}
		for ($i = $page_start; $i <= $page_end; $i++) {
			if ($i == $page_current) {
				$pagebar .= "" . $i . "";
			} else {
				$pagebar .= "" . $i . "";
			}
		}

		
		if ($page_current != $page_count) {
			$pagebar .= "END";
		}

		$pagebar .= "";

		$pagebar .= "";
	
		echo $pagebar;
 }

                   

 以上就是PHP简单分页函数的内容,更多相关内容请关注PHP中文网(www.php.cn)!

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
Previous article:一个邮件发送类..Next article:php 最简单的验证码