php分頁函數

來源:互聯網
上載者:User

<?php
/*
需求,建立一個test資料庫,在裡邊建一個test表,裡面就
只要id欄位,輸入一下資料就可以啦。。
由於水平有限,難免出錯。。
*/
$conn = mysql_connect("localhost","root","");

$maxnum = 2; //每頁顯示記錄條數

mysql_select_db("test", $conn);
$query1 = "SELECT COUNT(*) AS totalrows FROM test ";
$result1 = mysql_query($query1, $conn) or die(mysql_error());
$row1 = mysql_fetch_assoc($result1);
$totalRows1 = $row1['totalrows']; //資料集資料總條數
$totalpages = ceil($totalRows1/$maxnum);//計算可分頁總數,ceil()為上舍函數

if(!isset($_GET['page']) || !intval($_GET['page']) || $_GET['page'] > $totalpages) $page = 1; //對3種出錯進行預設處理
//在url參數page不存在時,page不為10進位數時,page大於可分頁數時,預設為1
else $page = $_GET['page'];

$startnum = ($page - 1)*$maxnum; //從資料集第$startnum條開始取,注意資料集是從0開始的

$query = "SELECT * FROM test LIMIT $startnum,$maxnum";//選擇出符合要求的資料 從$startnum條資料開始,選出$maxnum行
$result = mysql_query($query, $conn) or die(mysql_error());
$row = mysql_fetch_assoc($result);

?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>分頁樣本</title>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
//-->
</script>
<style type="text/css">
a{text-decoration:none;}
a:hover{text-decoration:underline}
table{font-size:12px;}
.tb{background-color:#73BB95}
.tr{background-color:#FFFFFF}
</style>
</head>

<body>
<table width="30%" border="0" align="center" cellpadding="0" cellspacing="1" class="tb">
<tr>
<td height="24"><div align="left">分頁樣本</div></td>
</tr>
<?php if($totalRows1) {//記錄集不為空白顯示
do {
?>
<tr class="tr">
<td height="24"><div align="center"><?php echo $row['id'];?></div></td>
</tr>
<?php }while($row = mysql_fetch_assoc($result));?>
</table>

<table width="95%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr><form name="form1">
<td height="27"><div align="center">
<?php
echo "共計<font color=\"#ff0000\">$totalRows1</font>條記錄";
echo "<font color=\"#ff0000\">".$page."</font>"."/".$totalpages."頁 ";

//實現 << < 1 2 3 4 5> >> 分頁連結
$pre = $page - 1;//上一頁
$next = $page + 1;//下一頁
$maxpages = 4;//處理分頁時 << < 1 2 3 4 > >>顯示4頁
$pagepre = 1;//如果當前頁面是4,還要顯示前$pagepre頁,如<< < 3 /4/ 5 6 > >> 把第3頁顯示出來

if($page != 1) { echo "<a href='".$_SERVER['PHP_SELF']."'><<</a> ";
echo "<a href='".$_SERVER['PHP_SELF'].'?page='.$pre."'><</a> ";}

if($maxpages>=$totalpages) //如果總記錄不足以顯示4頁
{$pgstart = 1;$pgend = $totalpages;}//就不所以的頁面列印處理
elseif(($page-$pagepre-1+$maxpages)>$totalpages)//就好像總頁數是6,當前是5,則要把之前的3 4 顯示出來,而不僅僅是4
{$pgstart = $totalpages - $maxpages + 1;$pgend = $totalpages;}
else{
$pgstart=(($page<=$pagepre)?1:($page-$pagepre));//當前頁面是1時,只會是1 2 3 4 > >>而不會是 0 1 2 3 > >>
$pgend=(($pgstart==1)?$maxpages:($pgstart+$maxpages-1));
}

for($pg=$pgstart;$pg<=$pgend;$pg++){ //導向功能表
if($pg == $page) echo "<a href=\"".$_SERVER['PHP_SELF']."?page=$pg\"><font color=\"#ff0000\">$pg</font></a> ";
else echo "<a href=\"".$_SERVER['PHP_SELF']."?page=$pg\">$pg</a> ";
}
if($page != $totalpages)
{echo "<a href='".$_SERVER['PHP_SELF'].'?page='.$next."'>></a> ";
echo "<a href='".$_SERVER['PHP_SELF'].'?page='.$totalpages."'>>></a> ";}
?>
<select name="menu1" onChange="MM_jumpMenu('parent',this,0)">
<option value="">選擇</option>
<?php for($pg1=1;$pg1<=$totalpages;$pg1++) {
echo "<option value=\"".$_SERVER['PHP_SELF']."?page=$pg1\">".$pg1."</option>";
}?>
</select>
</td></form>
</tr>
</table>
<?php } else {//記錄集為空白時顯示?>
<tr class="tr">
<td height="24"><div align="center">沒有任何記錄</div></td>
</tr>
</table>
<?php }?>
</body>
</html>
<?php
mysql_free_result($result1);
mysql_free_result($result);
?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.