gpt4 book ai didi

php - html/mysql 将查询结果回显到表中?

转载 作者:太空宇宙 更新时间:2023-11-03 12:02:21 25 4
gpt4 key购买 nike

我正在使用以下 MySQL 查询从我的数据库中选择数据并将结果回显到表中。

我的问题是第一组结果被正确回显,但是下一行将我的结果显示为垂直向下而不是水平。

这是发生了什么:

Heading1      Heading2      Heading3      Heading4     Heading5
a b c d e
a
b
c
d
e

请有人告诉我哪里出错了。这是我的代码:

    <?php 
$conn = new mysqli($host, $username, $password, $db_name);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error); }
$sql = "select * from new_supplier_request where status!= 'complete' and action_taken ='actioned'";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
echo '<table><tr><td><p><u>Request By</u></p></td><td><p><u>Date</u></p></td><td><p><u>Status</u></p></td><td><p><u>Supplier Name</u></p></td><td><p><u>Action</u></p></td></tr>';

while($row = $result->fetch_assoc()) {

$datetime = strtotime($row['date']);
$mysqldate = date("D, d M Y ", $datetime);

echo '<tr>';
echo '<td><p>'.$row['user_id'].'</p></td>';
echo '<td><p>'.$row['user_id'].'</p></td>';
echo '<td><p>'.$row['user_id'].'</p></td>';
echo '<td><p>'.$row['user_id'].'</p></td>';
echo '<td><p><a href="process/action.php?reference='.$row['reference'].'" id="action">Action</a>&nbsp;/&nbsp;<a href="process/decline.php?reference='.$row['reference'].'" id="decline">Decline</a></p></td></tr>';
}
echo '</table>';

}else{

echo'<div class="no_requests">No New Supplier Request&#39;s</div>';


} ?>

最佳答案

您在循环中关闭表。第一组结果正确回显,因为它仍在第一个循环中,它会输出您想要的结果,但由于关闭表,其他结果被弄乱了。 </table>标记在循环中,但 <table> </table> 不是这样吗?甚至没有关闭任何东西。这意味着您的其余结果实际上并不在表格中。你需要把你的 </table>跳出循环。

while($row = $result->fetch_assoc()) { 

$datetime = strtotime($row['date']);
$mysqldate = date("D, d M Y ", $datetime);

echo '<tr>';
echo '<td><p>'.$row['user_id'].'</p></td>';
echo '<td><p>'.$row['user_id'].'</p></td>';
echo '<td><p>'.$row['user_id'].'</p></td>';
echo '<td><p>'.$row['user_id'].'</p></td>';
echo '<td><p><a href="process/action.php?reference='.$row['reference'].'" id="action">Action</a>&nbsp;/&nbsp;<a href="process/decline.php?reference='.$row['reference'].'" id="decline">Decline</a></p></td></tr>';
}
echo '</table>';

还有随机 <?php 是什么?超过你的时间?

关于php - html/mysql 将查询结果回显到表中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28601768/

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