如何在PHP和MySQL中實現分頁以每頁顯示10條結果?

Mary-Kate Olsen
發布: 2024-11-06 20:37:03
原創
495 人瀏覽過

How to Implement Pagination in PHP and MySQL to Display 10 Results Per Page?

PHP 和MySQL 分頁:每頁顯示10 個結果的分步指南

對檢索您的MySQL 查詢進行分頁用戶重定向並每頁顯示10 個結果,請考慮以下解:

1.計算分頁變數:

<code class="php">$perPage = 10;
$page = (isset($_GET['page'])) ? (int)$_GET['page'] : 1;
$startAt = $perPage * ($page - 1);</code>
登入後複製

2.統計總結果:

<code class="php">$query = "SELECT COUNT(*) as total FROM redirect
WHERE user_id = '".$_SESSION['user_id']."'";
$r = mysql_fetch_assoc(mysql_query($query));

$totalPages = ceil($r['total'] / $perPage);</code>
登入後複製

3。產生頁面連結:

<code class="php">$links = "";
for ($i = 1; $i <= $totalPages; $i++) {
  $links .= ($i != $page) 
            ? "<a href='index.php?page=$i'>Page $i</a> "
            : "$page ";
}</code>
登入後複製

4.執行分頁查詢:

<code class="php">$query = "SELECT * FROM 'redirect'
WHERE 'user_id'= \''.$_SESSION['user_id'].' \' 
ORDER BY 'timestamp' LIMIT $startAt, $perPage";

$r = mysql_query($query);</code>
登入後複製

5.顯示結果和頁面連結:

5.顯示結果和頁面連結:

<code class="php">// display results here the way you want

echo $links; // show links to other pages</code>
登入後複製

實作自己的邏輯來顯示檢索到的結果和產生的頁面連結。

此解決方案使用 PHP 和 MySQL 分頁技術來顯示每頁固定數量的結果並提供其他頁面的導覽連結。

以上是如何在PHP和MySQL中實現分頁以每頁顯示10條結果?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!