我正在尝试循环显示数据库中表中的信息,但对于某些信息,我正在引用其他表。当我尝试从其他表中获取数据时,后面的任何数据都会消失。这是我正在使用的代码:
`
//Below is the SQL query
$listing = mysql_query("SELECT * FROM Musicians");
//This is displaying the results of the SQL query
while($row = mysql_fetch_array($listing))
{
?>
...html here...
<? echo $row['name']; ?>
<? echo $row['Town']; ?>
<?
$CountyRef = $row['CountyId'];
$county = mysql_query("SELECT * FROM County WHERE CouInt='$CountyRef'");
while($row = mysql_fetch_array($county))
{
echo $row['CouName'];
}
?>
<?php echo $row['instrument']; ?>
<?php echo $row['style']; ?>`
我的问题是第二个while循环之后的所有内容都没有显示。有人有什么建议吗?
谢谢