我有一个可以正常工作的 php 脚本,它可以从 mysql 数据库中返回一个表。我正在处理一个有点复杂的 html 页面,该页面在整个页面上显示来自不同来源的信息。如何在现有的 html 中使用 div 来显示这个返回的表?
工作的php
<?php
$con=mysqli_connect("localhost","mylogin","mypass","mydb");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$result = mysqli_query($con,"SELECT * FROM mysqltable");
echo "<table border='1'>
<tr>
<th>Category</th>
<th>Contents</th>
</tr>";
while($row = mysqli_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['category'] . "</td>";
echo "<td>" . $row['contents'] . "</td>";
echo "</tr>";
}
echo "</table>";
mysqli_close($con);
?>
我在下面尝试了一个简单的独立 html,但它返回空白,我在该主题上找不到太多其他内容。任何帮助表示赞赏!(我还希望学习如何使本部分不断更新或在未来每隔几秒钟更新一次,因为多个贡献者将提交给它。)
尝试和失败的html
<html>
<body>
<div style="width: 330px; height: 130px; overflow: auto;">
<?php include 'workingphp.php'; ?>
</div>
</body>
</html>
再次,非常感谢帮助。