使用SQL数据和PHP填充HTML表

时间:2016-03-17 08:56:21

标签: php html for-loop html-table

我正在尝试使用几个循环来填充表格。

第一个循环用连续的用户填充表头,没问题。

问题是将tds填充为具有正确票号的行。

我可以在单个td中的订单列中获取所有数字,这不是它应该如何工作

像这样,

---------------------
user1 | user2 | user3
---------------------
00001 | 00004 | 00007
00002 | 00005 | 00008
00003 | 00006 | 00009
---------------------

应该是,

---------------------
user1 | user2 | user3
---------------------
00001 | 00004 | 00007
---------------------
00002 | 00005 | 00008
---------------------
00003 | 00006 | 00009
---------------------

你明白了。

这是我正在使用的代码,

<table class="table table-hover">
    <thead>
        <tr>
            <th scope="row">
                <?php
                $userName = functionName();
                for ($userName->rewind(); $userName->pointer < $userName->size; $userName->next()) {
                    $record = $userName->current();
                    $firstName = $record->fields->FirstName;
                    ?>
                <th><?php echo $firstName; ?></th>
<?php } ?>
            </th>
        </tr>
    </thead>

    <tbody>
        <tr>
            <th scope="row">
                <?php
                for ($userName->rewind(); $userName->pointer < $userName->size; $userName->next()) {
                    $record = $userName->current();
                    $firstName = $record->fields->FirstName;
                    ?>

                <td>
                    <?php
                    $userCase = functionCase($firstName);
                    for ($userCase->rewind(); $userCase->pointer < $userCase->size; $userCase->next()) {
                        $record = $userCase->current();
                        $caseNumber = $record->fields->CaseNumber;
                        $status = $record->fields->Status;

                        echo $caseNumber;
                        ?>
                    <?php }
                ?>
                </td>
<?php } ?>
            </th>
        </tr>   
    </tbody>
</table>

我想我可能正在使用那个部分的错误逻辑和循环。

如何获得正确的表格结果?

1 个答案:

答案 0 :(得分:0)

我认为您使用的是不正确的HTML表格布局。

你有一个td,据我所知,这是不允许的。如果要在多行中显示数据,则必须为每一行创建一个tr。然后,trs可以包含th和td项。有关有效的表格布局,请参阅http://www.w3schools.com/tags/att_th_scope.asp