首頁  >  文章  >  後端開發  >  如何在 PHP 和 MySQL 中為「重定向」表實作分頁?

如何在 PHP 和 MySQL 中為「重定向」表實作分頁?

Mary-Kate Olsen
Mary-Kate Olsen原創
2024-11-02 12:28:301001瀏覽

How to Implement Pagination in PHP & MySQL for a 'redirect' Table?

PHP 與MySQL 分頁:綜合指南

問題:

問題:

問題:

<code class="php"><?php

// Insert your MySQL connection code here

// Define variables
$perPage = 10;
$page = (isset($_GET['page'])) ? (int)$_GET['page'] : 1;
$startAt = $perPage * ($page - 1);

// Get total number of rows
$query = "SELECT COUNT(*) as total FROM redirect
WHERE user_id = '".$_SESSION['user_id']."'";
$r = mysql_fetch_assoc(mysql_query($query));

// Calculate total number of pages
$totalPages = ceil($r['total'] / $perPage);

// Generate pagination links
$links = "";
for ($i = 1; $i <= $totalPages; $i++) {
  $links .= ($i != $page ) 
            ? "<a href='index.php?page=$i'>Page $i</a> "
            : "$page ";
}

// Execute query with pagination applied
$query = "SELECT * FROM 'redirect'
WHERE 'user_id'= \''.$_SESSION['user_id'].' \' 
ORDER BY 'timestamp' LIMIT $startAt, $perPage";

$r = mysql_query($query);

// Display results ...

// Echo pagination links
echo $links; // show links to other pages</code>
問題:問題:題根據特定的“user_id”從“redirect”表中檢索資料並按“timestamp”對結果進行排序。您需要實現分頁才能每頁顯示 10 個結果。 解決方案:在 PHP 執行分頁:

以上是如何在 PHP 和 MySQL 中為「重定向」表實作分頁?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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