gpt4 book ai didi

php - 在表格内以表格格式显示数据库中的数据

转载 作者:行者123 更新时间:2023-11-29 01:01:18 25 4
gpt4 key购买 nike

我有一个连接到数据库的输入表单。[提交表单]后,我想制作一个表单来显示已输入数据库的所有数据。我想在可按名称或日期排序的表格中显示此数据。

请帮帮我。

最佳答案

您要采取的高级步骤是:

  1. 打印 HTML 表头
  2. 建立与数据库的连接
  3. 发出查询并捕获结果(例如作为数组)
  4. 遍历数组,打印每个 HTML 表格行
  5. 清理可能占用内存或数据库连接的数据库对象
  6. 打印 HTML 表格关闭

以下示例是来自 this page on php.net 的示例 #2 的略微修改版本.我建议您在那个网站上多花点时间 - 手册非常好,几乎每一页的评论部分都有大量的工作示例。

<table>
<?php
// Establish the database connection
mysql_connect("localhost", "mysql_user", "mysql_password") or
die("Could not connect: " . mysql_error());
mysql_select_db("mydb");

// Issue the query
$result = mysql_query("SELECT id, name FROM mytable");

// Capture the result in an array, and loop through the array
while ($row = mysql_fetch_array($result, MYSQL_NUM)) {
// Print each row as HTML: <tr><td>row 0</td><td>row 1</td>
printf("<tr><td>%s</td><td>%s</td></tr>", $row[0], $row[1]);
}
// Free the result set
mysql_free_result($result);
?>
</table>

关于php - 在表格内以表格格式显示数据库中的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2962963/

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