php 分頁函數

來源:互聯網
上載者:User
 代碼如下 複製代碼
$conn=mysql教程_connect("localhost","root","123456");
$pagesize=4;//設定每一頁顯示的記錄數
mysql_select_db("ly",$conn);
$rs=mysql_query("select count(*) from lyb",$conn);//取得記錄總數$rs,計算總頁數用
$myrow = mysql_fetch_array($rs);
$numrows=$myrow[0];
$pages=intval($numrows/$pagesize);//計算總頁數
if ($numrows%$pagesize)
$pages++;
//設定頁數
if (isset($_get['page'])){
$page=intval($_get['page']);}
else{
//設定為第一頁
$page=1;
}
//計算記錄位移量
$offset=$pagesize*($page - 1);
//讀取指定記錄數
$rs=mysql_query("select * from lyb order by id desc limit $offset,$pagesize",$conn);
if ($myrow = mysql_fetch_array($rs))
{
$i=0;
?>
  <table border="0" width="80%">
  </tr>
  <?php
do {
$i++;
    ?>
   <td width="10%"><?=$myrow["nichen"]?></td>
  
  <?php
}
while ($myrow = mysql_fetch_array($rs));
echo "</tr></table>";

聯繫我們

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