我有这个查询:
$result3 = mysql_query("SELECT posts.id, posts.date, posts.title, comments.post, comments.id, comments.date FROM posts, comments WHERE posts.id = comments.post")
or die(mysql_error());
while($row2 = mysql_fetch_array( $result3 )) {
echo $row2['title'];
}
问题在于 posts.id 、 posts.date 和 comments.id 、 comments.date 。我怎样才能得到$row2['....];
我试过的两张桌子的 id, date$row2['posts.id'];
但它没有用!