gpt4 book ai didi

php - 表格样式在 PHP、MySql 中不起作用

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

在添加以下行之前表格模式正在运行

echo "<td><a href='get_file.php?quote_id=" . $row['quote_id'] ."'>Download</a></td>"; 

但是添加上述行后,表格样式消失了。这是完整的表格代码,请帮助我

<div class="table-responsive">
<table class="table table-striped table-bordered table-hover" id="dataTables-example">
<thead>
<tr>
<th>Quote ID</th>
<th>File Name</th>
<th>File</th>
<th>Size</th>
<th>Created</th>
</tr>
</thead>
<tbody>
<?php
while($row = $result->fetch_assoc()) {
if ($row["status"]!="Approved")
{
echo "<tr>";
echo "<td>" . $row['quote_id'] . "</td>";
echo "<td>" . $row['name'] . "</td>";
echo "<td>" . $row['mime'] . "</td>";
echo "<td>" . $row['size'] . "</td>";
echo "<td>" . $row['created'] . "</td>";
echo "<td><a href='get_file.php?quote_id=" . $row['quote_id'] ."'>Download</a></td>";
echo "</tr>";
}}
?>
</tbody>
</table>
</div>

最佳答案

您有 5 <th>

还有

6 <td>

这就是它不起作用的原因。

更改:

<tr>
<th>Quote ID</th>
<th>File Name</th>
<th>File</th>
<th>Size</th>
<th>Created</th>
</tr>

<tr>
<th>Quote ID</th>
<th>File Name</th>
<th>File</th>
<th>Size</th>
<th>Created</th>
<th>Download</th>
</tr>

另外,改变

echo "<td><a href='get_file.php?quote_id=" . $row['quote_id'] ."'>Download</a></td>"; 

echo '<td><a href="get_file.php?quote_id=' . $row['quote_id'] .'">Download</a></td>'; 

关于php - 表格样式在 PHP、MySql 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27373066/

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