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?
}
答案 0 :(得分:1)
试试:
$replies = mysql_query("select * from replies,profiles where article_id = '$row[id]' AND replies.user_id=profiles.id order by timestamp desc");
祝你好运!