我只是在学习 PHP,我想创建一个表来显示我提交到我的数据库的回显数据,我的问题是默认情况下该表水平显示,正如您在我的脚本中看到的 Horizontal default table
<table >
<tr>
<th>Name</th>
<th>Age</th>
<th>Height</th>
</tr>
<?php
$conn = mysqli_connect("localhost", "root", "", "class");
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$sql = "SELECT Name, Age, Height FROM student order by Name desc";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
echo "<tr><td>" . $row["Name"]. "</td><td>" . $row["Age"] . "</td><td>"
. $row["Height"]. "</td></tr>";
}
echo "</table>";
} else //{ echo "0 results"; }//
$conn->close();
?>
</table>
但我希望它垂直回显,而不是像我想要的垂直结果,我试图在我的 PHP 代码中更改回显中的 html,但我根本无法获得结果,而且表格的形状与我想要的相差甚远这是我页面的完整脚本。
慕的地8271018
慕雪6442864