使用bootstrap将PHP / MySQL输出到表中 - 列是混乱的

时间:2015-08-23 18:10:30

标签: php mysql twitter-bootstrap

我有问题将mysql输出到表中。脚本工作得很好,我得到了我需要的数据,但是表格中的列是混乱的。似乎这些多个回声可能存在问题,但我尝试了所有可能的组合,我发现/提出了迄今为止没有任何工作。

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>";
    }
}

1 个答案:

答案 0 :(得分:0)

你必须试试这个:

bar

你在循环中重复表格。希望这能帮助你。