gpt4 book ai didi

php - MySQL-PHP在html表格中单独显示数据

转载 作者:行者123 更新时间:2023-12-01 00:19:43 24 4
gpt4 key购买 nike

我试图在 html 页面中使用 PHP 显示来自 MySQL 表的数据,将数据包装在 HTML 表中。

我在 MySQL 表中有 11 列和 x 行,其中我只需要 6 列就可以将所有行打印为 HTML 表。我能做到。(成功)

我的方法:

$result = mysqli_query($connect, "SELECT order_id, order_name, order_from, order_to, order_pickup, order_dropoff FROM users");

// Printing results in HTML
echo "\n";
while ($line = mysqli_fetch_array($result, MYSQL_ASSOC)) {
echo "\t<tr id='$line[order_id]'>\n";
foreach ($line as $col_value) {
echo "\t\t<td>$col_value</td>\n";
}
echo "\t</tr>\n";
}
echo "\n";

输出:

enter image description here

我的问题:在这 6 列中,我希望将名为 order_id 的 1 列作为行 (tr) 的 id,所以现在我只想剩下五个作为table-cell 的 td 的。我不想将 order_id 列的值作为表格单元格。

最佳答案

同时检查 $line 中的列名:

foreach ($line as $col_name => $col_value) {
if ($col_name != 'order_id') {
echo "\t\t<td>$col_value</td>\n";
}
}

关于php - MySQL-PHP在html表格中单独显示数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34637571/

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