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中文網其他相關文章!