这是我的代码,它似乎没有用数据库中的任何数据填充表,并且数据库中有一条记录。
<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>