我试图将MySQL表中的所有行都放入HTML表中:

<table border="1" cellspacing="2" cellpadding="2">
    <tr>
        <td>Exam ID</td>
        <td>Status</td>
        <td>Assigned Examiner</td>
        <td>Recruit's name</td>
    </tr>
    <?php
        $query = mysql_query("SELECT * FROM `access`");
        $num = mysql_num_rows($query);
        $r = mysql_fetch_assoc($query);
    ?>
    <?php for($i=0;$i<$num;$i++) { ?>
    <tr>
    <?php echo '<td>' . $r['code'] . '</td>'; } ?>
    </tr>
</table>


它的输出如下:

Exam ID <br />
1<br />
1<br />
1<br />


显然,我希望它像在不断增长的MySQL中一样。

最佳答案

您只获取第一行。

mysql_fetch_assoc放入循环中:

                <?php for($i=0;$i<$num;$i++) {
                $r = mysql_fetch_assoc($query);
                ?>
                <tr>
                <?php echo '<td>' . $r['code'] . '</td>'; } ?>
                </tr>


请注意,还有更多新功能要使用(请参见the warning in the doc)。

关于html - 为什么MySQL中表中的所有行都相同? (MySQL表> HTML表),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14418418/

10-12 18:22