PHP列表頁展示方法

來源:互聯網
上載者:User

  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
    <style type="text/css">  
    *{  
        margin:0;  
        padding:0;  
    }  
    #lay{  
        margin:100px 100px 100px 100px;  
    }  
    a{  
        padding:5px;  
        font-size:13px;  
        text-decoration:none;  
    }  
    span{  
        font-size:13px;  
    }  
    table{  
        border:1px solid red;  
        border-collapse:collapse;  
    }  
    </style>  
      

  id

  值

  

  

  $link = mysql_connect("localhost","root",""); //串連資料庫

  mysql_select_db("cs");//選擇哪個資料庫

  mysql_query("set names utf-8"); //設定資料庫字元編碼為中文

  $sql = mysql_query("select *from persons");

  $pagesize = 5; //顯示條數

  $sum = mysql_num_rows($sql); //判斷 一共有多少條資料

  $count = ceil($sum/$pagesize);//求出一共有多少頁

  $pages = $count; //顯示最後一頁

  $init = 1;

  $page_len = 7;

  $max_p = $count;

  if(empty($_GET["page"])|| $_GET["page"]<0){

  $page = 1;

  }else{

  $page = $_GET["page"];

  }

  $off = ($page-1)*$pagesize; //求出資料庫查詢的第一個資料

  $he = mysql_query("select * from persons limit $off,$pagesize");//按照off開始,到pagesize規律顯示

  echo "一共 ".$sum." 條資料";

  while($row = mysql_fetch_array($he)){

  echo "";

  echo "".$row['id']."";

  echo "".$row['FirstName']."";

  echo " ";

  }

  ?>

  

  $page_len = ($page_len%2)?$page_len:$page_len+1;//如果餘為1則為真,為0則為假

  $pageoffset = ($page_len-1)/2;//頁碼位移量

  $key ="";

  if($page!=1){

  $key.="第一頁 ";

  $key.="上一頁 ";

  }else{

  $key.="第一頁 ";

  $key.="上一頁 ";

  }

  if($pages>$page_len){

  if($page<=$pageoffset){

  $init=1;

  $max_p = $page_len;

  }else{

  if($page+$pageoffset>=$pages+1){

  $init = $pages - $page_len+1;

  }else{

  $init = $page-$pageoffset;

  $max_p = $page + $pageoffset;

  }

  }

  }

  for($i=$init;$i<=$max_p;$i++){

  if($i==$page){

  $key.="[ ".$i." ]";

  }else{

  $key.="$i";

  }

  }

  if($i-1!=$page){

  $key.="下一頁";

  $key.="最後一頁";

  }else{

  $key.="下一頁";

  $key.="最後一頁";

  }

  echo "";

  echo "".$key."";

  echo "";

  ?>

  

  

  

  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.