首頁  >  文章  >  後端開發  >  實現中國夢心得體會 php開發分頁實現程式碼第1/3頁

實現中國夢心得體會 php開發分頁實現程式碼第1/3頁

WBOY
WBOY原創
2016-07-29 08:48:251367瀏覽

專案架構:

 php开发分页实现代码第1/3页

運作效果:

 php开发分页实现代码第1/3页

conn.php

mysql_connect("localhost" , "root", "") or die("資料庫連結錯誤"); mysql_select_db("form", $conn); mysql_query("set names 'GBK'"); //使用GBK中文編碼; / /替換空格,回車鍵function htmtocode($content) {

$content = str_replace("n", "
", str_replace(" ", " ", $content));

return $content;
}
?>


page.php



複製程式碼

程式碼如下:



1 2 '',3 f3 function _PAGE(1 4 5 global $page, $firstcount, $pagenav, $_SERVER; 6 7 $GLOBALS["displaypg"] = $displaypg; 8

9 if (!$page)
=
; (!$url) {
$url = $_SERVER["REQUEST_URI"];
}
//URL分析:
$parse_url = parse_url($url);
$url_query = $parse_url =url["query"]; //單獨取出URL的查詢字串
if ($url_query) {
$url_query = ereg_replace("(^|&)page=$page", "", $url_query);
$url = str_replace($parse_url["query);
$url = str_replace($parse_url["query "], $url_query, $url);
if ($url_query)
$url .= "&page";
else
$url .= "page";
} else {
$url .= "?page";
}
$lastpg = ceil($totle / $displaypg); //最後頁,也是總頁數
$page = min($lastpg, $page);
$prepg = $page -1; //上一頁
$nextpg = ($page == $lastpg ? 0 : $page +1); //下一頁
$firstcount = ($page -1) * $displaypg;
//開始分頁導覽條碼:
$pagenav = "顯示第" . ($totle ? ($firstcount +1) : 0) . "-" . min($firstcount + $displaypg, $totle) . " 筆記錄,共$totle 筆記錄";
//如果只有一頁則跳出函數:
if ($lastpg return false;
$pagenav .= " 首頁 ";
if ($prepg)
$pagenav .= " 前頁 ";
else
$pagenav .= " 前頁";
if ($nextpg)
$pagenav .= " 後頁 ";
else
$pagenav .= " 後頁";
$pagenav .= " 尾頁 ";
//下拉跳轉列表,循環列出所有頁碼:
$pagenav .= " 到第 頁,共$lastpg 頁";
}
include("conn.php");
$result=mysql_query("SELECT * FROM `test`");
$total=mysql_num_ $result);
//呼叫pageft(),每頁顯示10個訊息(使用預設的20時,可以省略此參數),使用本頁URL(默認,所以省略掉)。
_PAGEFT($total,5);
echo $pagenav;
$result=mysql_query("SELECT * FROM `test` limit $firstcount,$displaypg ");
while($row=mysql_fult_array(
echo "


".$row[name]." | ".$row[sex];
}
?>


list.php
[code]
include("php
[code]
include("php

[code]
include("php
[code]
include("php
[code]
include("php
[code]
include("php

[code]

include("php [code]

include("php 是.php"); 🎜$pagesize=5; 🎜$url=$_SERVER["REQUEST_URI"]; 🎜$url=parse_url($url); 🎜$url=$url[path]; 🎜$numq=mysql_query(" SELECT * FROM `test`"); 🎜$num = mysql_num_rows($numq); 🎜if($_GET 🎜目前1/3頁 123下一頁🎜 🎜 以上就介紹了實現中國夢心得體會 php開發分頁實現代碼第1/3頁,包括了實現中國夢心得體會方面的內容,希望對PHP教程有興趣的朋友有所幫助。 🎜 🎜 🎜

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn