0

我有一个可以正常工作的 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> 

再次,非常感谢帮助。

4

2 回答 2

2

您的 html 文件必须是 php 文件,这意味着将 page.html 更改为 page.php

于 2013-09-19T07:38:17.407 回答
1

您可以使用 jQuery Ajax 从其他页面获取内容

$("#div1").load("workingphp.php");

#div1 将是您的 div 的 id

<div style="width:  330px;  height:  130px;  overflow:  auto; id="div1">

还包括标签,应该可以正常工作。如果您将它们包含在 php 页面中

<?php include 'workingphp.php'; ?>
于 2013-09-19T07:41:27.717 回答