Ben 2 tablolar birlikte katılmak istiyorum ama o iş için alınamıyor.
These are the tables:
threads: id, title
posts: thread_id, message
$sql = mysql_query("SELECT threads.id, threads.title
FROM threads
JOIN posts ON posts.thread_id = threads.id
WHERE threads.id = ".intval($_GET['id']));
while ($post = mysql_fetch_assoc($sql))
{
echo $post['title'];
echo $post['message'];
}
Bu başlık değil, mesajı alır. Ben parçacığı atanmış bir tane var.