简体   繁体   English

PHP / MySQL输出到带有引导程序的表中-列混乱

[英]PHP/MySQL output into table with bootstrap - columns are messed

I have problem with mysql output into table. 我在将mysql输出到表中时遇到问题。 Script is working perfectly, I got data what I need but columns in table are messed. 脚本运行良好,我得到了所需的数据,但表中的列混乱了。 It seems like there might be a problem with these multiple echos, but I tried every possible combination what I found/come up with and nothing worked so far. 似乎这些多重回声可能存在问题,但是我尝试了发现/想到的每种可能的组合,但到目前为止没有任何效果。

if (mysqli_num_rows($result) > 0) {
    while($row = mysqli_fetch_assoc($result)) {
        echo"<table class='table table-hover table-striped table-responsive'>";
        echo"<tr class='table_row'>";
        echo"<td>" . $row['1'] . "</td>";
        echo"<td>" . $row['2'] . "</td>";
        echo"<td>" . $row['3'] . "</td>";
        echo"<td>" . $row['4'] . "</td>";
        echo"<td><a href='#'><button type='button' class='btn btn-danger btn-xs glyphicon glyphicon-remove-circle'></button></a></td>";
        echo"</tr>";
        echo"</table>";
    }
}

You must try this : 您必须尝试这样做:

 if (mysqli_num_rows($result) > 0) {
  echo"<table class='table table-hover table-striped table-responsive'>";
                  while($row = mysqli_fetch_assoc($result)) {

                    echo"<tr class='table_row'>";
                    echo"<td>" . $row['1'] . "</td>";
                    echo"<td>" . $row['2'] . "</td>";
                    echo"<td>" . $row['3'] . "</td>";
                    echo"<td>" . $row['4'] . "</td>";
                    echo"<td><a href='#'><button type='button' class='btn btn-danger btn-xs glyphicon glyphicon-remove-circle'></button></a></td>";
                    echo"</tr>";

                  }
echo"</table>";
}

You are repeating the table inside while loop. 您正在while循环内重复该表。 Hope this help you. 希望这对您有所帮助。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM