-4

在我穿越 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>

和输出: 输出

4

1 回答 1

3

替换所有你<tb><td>,然后应该工作

<tb>无效

于 2013-06-27T16:14:39.353 回答