我正在尝试查找如何在html中的表中插入行,但是我想使用外部php文件来完成,但是也许是另一种解决方案,因为目的是从数据库中获取表一个并将其记录到html表中。
我试图在互联网上查找,但是没有找到与我要查找的内容相符的东西。
答案 0 :(得分:0)
您是从这里(https://www.php.net/manual/en/mysqli-result.fetch-assoc.php)表示“示例1”之类的意思吗?
您只需要添加html标签即可创建html表(table,td等)。
编辑:
此示例包含html标记,应执行您想要的操作:
<html>
...
<body>
<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "database");
$query = "SELECT Name, CountryCode FROM City ORDER by ID DESC LIMIT 50,5";
if ($result = $mysqli->query($query)) {
echo "<table>";
/* fetch associative array */
while ($row = $result->fetch_assoc()) {
echo "<tr><td>" . $row['Name'] . "</td><td>" . $row['CountryCode'] . "</td></tr>";
}
echo "</table>";
/* free result set */
$result->free();
}
?>
</body>