如何从另一个表中的while循环中的表中获取数据?

时间:2015-04-04 15:47:33

标签: php mysql

user_id可以在replies表格中找到,也可以在profiles表格中找到。个人资料表包含real_name列。

下面我获取特定replie的所有article_id。我的问题是如何回应保存在real_name表中的评论者的profiles

我正在考虑这个的表现。

$replies = mysql_query("select * from replies where article_id = '$row[id]' order by timestamp desc");

while($reply = mysql_fetch_assoc($replies)) {

I can echo the comments from the replies table, but how do I echo the real_name of each?

}

1 个答案:

答案 0 :(得分:1)

试试:

$replies = mysql_query("select * from replies,profiles where article_id = '$row[id]' AND replies.user_id=profiles.id order by timestamp desc");
祝你好运!