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.显示结果和页面链接:
实现自己的逻辑来显示检索到的结果和生成的页面链接。
<code class="php">// display results here the way you want echo $links; // show links to other pages</code>
该解决方案使用 PHP 和 MySQL 分页技术来显示每页固定数量的结果并提供其他页面的导航链接。
以上是如何在PHP和MySQL中实现分页以每页显示10条结果?的详细内容。更多信息请关注PHP中文网其他相关文章!