私はこのクエリを持っています:
$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、日付を取得するにはどうすればよいですか$row2['posts.id'];
?