gpt4 book ai didi

php - 如何通过 SQL 在 PHP 中创建动态表

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

我尝试制作一个动态表格。数据来自数据库。到目前为止它有效,但我想制作一个具有单独字段的表,而不是像我的方式。到目前为止我的代码:

 <?php

$result = mysql_query("SELECT buyTime, untilTime FROM users WHERE userName='".$_SESSION["user"]."';");
$num_rows = mysql_num_rows($result);
echo("Buy Date"."|Expire Date");
echo "<br />";
echo "<br />";
while ($row = mysql_fetch_array($result)) {
echo '<th>'.$row['buyTime'].'</th>'."|".'<th>'.$row['untilTime'].'</th>';
echo "<br />";
}
?>

结果:

Click here

那么我怎样才能制作一个正确的表格,而不是伪表格呢?

谢谢:)

问候

最佳答案

在 html 上使用 table 元素,并将 php 循环代码放入 tbody 元素内。如何正确创建表;

<table>
<thead>
<tr>
<th>Buy Date</th>
<th>Expire Date</th>
</tr>
</thead>

<tbody>
<?php
$result = mysql_query("SELECT buyTime, untilTime FROM users WHERE userName='".$_SESSION["user"]."';");
$num_rows = mysql_num_rows($result);

while ($row = mysql_fetch_array($result)) {
echo '<tr>';
echo '<td>'.$row['buyTime'].'</td><td>'.$row['untilTime'].'</td>';
echo '</tr>'
}
?>
</tbody>
</table>

关于php - 如何通过 SQL 在 PHP 中创建动态表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47112250/

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