Hiii
使用My / SQL - PHP
我有php
代码和SQL Statement
代码,这些代码为我提供了来自桌面玩家的第一个和第二个名字joueur
现在我去展示我桌上的first 4 lines
<?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>';
?>
答案 0 :(得分:1)
使用mysql LIMIT子句...
$result = mysqli_query($con, "SELECT * FROM joueur LIMIT 4")
答案 1 :(得分:1)
使用LIMIT,如
SELECT * FROM joueur LIMIT 4