循环输出上表

时间:2013-06-27 16:12:26

标签: php

在我漫长的PHP之旅中,我从未遇到过这样的问题。

我正试图将一些数据放入它的桌子位置,但是尽管它很生气,它不会让我完成我的工作并决定爬上它虽然我已严格告诉它留在下面。
所以我得出的结论是,我的桌子或环路都被诅咒了!这就是为什么我和你们争吵,希望你们能够治愈这种黑色巫术。

到目前为止我的代码:

<table>
    <thead>
        <tr>
            <th>Dato</th>
            <th>Start</th>
            <th>Hjemme</th>
            <th>Ude</th>
            <th>Mål</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Hejsa</td>
        </tr>
        <?
            $res = $mysqli->query("SELECT * FROM kampe ORDER BY dato DESC LIMIT 8");
            while($row = $res->fetch_assoc()){
                echo "<tr>";
                echo "<tb>".dateMd("j. F", strtotime($row["dato"]))."</tb>";
                echo "<tb>".date("h:i", strtotime($row["dato"]))."</tb>";
                echo "<tb>hej</tb>";
                echo "<tb>hej</tb>";
                echo "<tb>hej</tb>";
                echo "</tr>";
            }
        ?>
        <tr>
            <td>Hejsa</td>
        </tr>
    </tbody>
</table>

输出: Output

1 个答案:

答案 0 :(得分:3)

将所有<tb>替换为<td>,然后应该

<tb>无效