gpt4 book ai didi

php - 将 MySQL 数据分类为限制大小的页面,并在屏幕上选择更改页面?它是如何完成的?

转载 作者:行者123 更新时间:2023-11-29 05:54:23 26 4
gpt4 key购买 nike

<分区>

我是 HTML 和 CSS 的新手,但是我有一些使用 C# 和 Java 编写游戏的基础知识(使用 LibGDX、Unity 等框架)。

我在 MySQL 中构建了一个数据库,并使用相应的 php 代码为表中的每个条目显示一篇 html 文章。

一切正常,但整个数据库加载到一个大网页上。

我已经阅读了很多,但似乎找不到从哪里开始将其构建到页面中。我现在唯一能想到的想法是,我需要在我网站的某处放置一个字段来保存用户选择的当前页码,然后在我的 SQL SELECT 语句中使用该数字以某种方式只提取从“currentPage”开始的 20 页* 例如 20'。

我找到了我需要的一小部分信息,就像我看到的可能有一个 LIMIT 子句我可以使用。但是怎么可能

SELECT * FROM table ORDER BY id DESC LIMIT (currentPage*20); 

知道index.php 中的currentpage 是什么吗? (如果那是我什至不知道的正确语法/书写方式!)。

这是我已有的 PHP 代码部分:

  // create connection
$conn = new mysqli($servername, $username, $password, $dbname);

$currentPage = 0;
$rowsPerPage = 20;
$startRow = $currentPage * $rowsPerPage;

// check connection
if ($conn->connect_error) {
die("connection failed: " . $conn->connect_error);
}

$sql = "SELECT * FROM games ORDER BY id DESC LIMIT $startRow, $rowsPerPage";
$result = $conn->query($sql);


if ($result->num_rows > 0)
{
// output data of each row
while($row = $result->fetch_assoc())
{
echo '<section class="wrapper style1">';
echo '<div class="inner">';
echo '<header class="align-center">';
echo '<h2>'. $row["title"] . '</h2>';
echo '<div class="image fit">';
echo '<img src='. $row["imglink"] .'>';
echo '</div> <p> RELEASE TITLE: ' . $row["title"] . '<br /> DATE POSTED: ' . $row["timestamp"] . '<br /> DESCRIPTION: ' . $row["description"] . '</p>';
echo '<a href="'.$row["downloadlink"].'" target="_blank">Download Link </a> <br /> <a href="downloadhelp.php">click here to learn more</a> <br /> <a href="fileshelp.php">click here for help running the files</a> <br /> <br /> <br />';
$VidLink = $row["vidlink"];
if ($VidLink != 'not found' && $VidLink != '')
{
echo '<div class="video-wrapper">'.$row["vidlink"].'</div>';
}
echo '</header>';
echo '</div>';
echo '</section>';
}
}
else
{
echo "0 results";
}
$conn->close();

我如何使用下面的代码同时包含一个分页系统一次只显示 n 行?

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com