SQL数据库信息不会进入HTML / PHP表

时间:2013-05-28 19:30:00

标签: php mysql html-table

这是我的代码,它似乎没有用数据库中的任何数据填充表,并且数据库中有一条记录。

  <table class='table table-striped'>
    <thead>
        <tr>
            <td>YouTube Channel</td>
            <td>Email</td>
        </tr>
    </thead>
    <tbody>
    <?php
        $connect = mysql_connect("HOST HERE","------", "--------");
        if (!$connect) {
            die(mysql_error());
        }
        mysql_select_db("DWTVDATA");
        $results = mysql_query("SELECT * FROM DWTVDATA");
        while($row = mysql_fetch_array($results)) {
        ?>
            <tr>
                <td><?php echo $row['Channel']?></td>
                <td><?php echo $row['Email']?></td>
            </tr>

        </tbody>
        </table>

1 个答案:

答案 0 :(得分:1)

你错过了结束循环括号:

    while($row = mysql_fetch_array($results)) {
?>
        <tr>
            <td><?php echo $row['Channel']?></td>
            <td><?php echo $row['Email']?></td>
        </tr>
<?php } ?>  <!-- ADD THIS LINE -->
    </tbody>
    </table>