gpt4 book ai didi

php - 距离我的 table 只有 4 行

转载 作者:行者123 更新时间:2023-11-29 07:53:34 24 4
gpt4 key购买 nike

使用 My/SQL -- PHP

我有这个 php 代码,其中包含 SQL 语句,它为我提供了牌 table 玩家的名字和名字 joueur

现在我只显示表格中的前 4 行

            <?php
$con = mysqli_connect("127.0.0.1", "root", "", "bd");
// Check connection
if (mysqli_connect_errno()) {
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}

$result = mysqli_query($con, "SELECT * FROM joueur");
echo '<table style="width:100%">';
while ($row = mysqli_fetch_array($result)) {
// echo $row['nom'] . " " . $row['prenom'];
echo '<tr>';
echo '<td>' . $row['nom'] . '</td>';
echo '<td>' . $row['prenom'] . '</td>';
echo '</tr>';
} echo ' </table>';
?>

最佳答案

使用 mysql LIMIT 子句...

$result = mysqli_query($con, "SELECT * FROM joueur LIMIT 4")

关于php - 距离我的 table 只有 4 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25764080/

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