我有两张桌子。。
表1“儿童”
表2“收藏夹”
我想把它像这样陈列在桌子上。。
我该怎么做?
这是我试过的密码`
$result = mysql_query("SELECT kids.*, favorites.* from kids INNER JOIN favorites ON kids.kids=favorites.kids");
$number='1';if (mysql_num_rows($result) > 0) {
while($row = mysql_fetch_array($result))
{
$idnumber=$row['kids'];
?>
<td class="centered"><?php echo $number;?></td>
<td class="centered hidden"><?php echo $idnumber;?></td>
<td class="centered hidden"><?php echo $row['favorites'];?></td>
<?php
}
++$number;
}
?>
`
最佳答案
尝试:
SELECT a.int,a.kids,b.kids,GROUP_CONCAT(b.favourite) from kids a, favourites b where a.kids = b.kids
这应该管用