gpt4 book ai didi

php - 在 html/php 表中显示来自 mysql 数据库的结果

转载 作者:太空宇宙 更新时间:2023-11-04 16:21:21 25 4
gpt4 key购买 nike

您好,我有一个页面,我可以在其中查看 mysql 数据库的数据输出。它运作良好。但它不时尚。所以我决定放入一个 html <table>标签。但是它不显示数据。

我已经试过了

<td> </td>行之间等,但它会停止解析代码。

<?php
$servername = "******";
$username = "root";
$password = "********";
$dbname = "test2";

// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}

$sql = "SELECT first_name, last_name, email FROM person_list";
$result = $conn->query($sql);



//display table
echo "<table border='1'>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
</tr>";

if ($result->num_rows > 0) {
// output data of each row

while($row = $result->fetch_assoc()) {
echo
"<br> ". $row["first_name"]. " "
. $row["last_name"] ." "
. $row["email"] ." " ;
}
}
else {
echo "0 results";
}

echo "</table>";
$conn->close();
?>

最佳答案

试试这个,如果它适合你..

echo "<table border='1'>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
</tr>";

if ($result->num_rows > 0) {
// output data of each row

while($row = $result->fetch_assoc()) {
echo "<tr>";
echo "<td>". $row["first_name"] . "</td>";
echo "<td>". $row["last_name"] . "</td>";
echo "<td>". $row["email"] . "</td> " ;
echo "</tr>";
}
}
echo "</table>";

关于php - 在 html/php 表中显示来自 mysql 数据库的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28942989/

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