私はこのサイトで検索しましたが、私が間違ったことをしたことは明らかではありませんが、クエリが機能せず、警告を返しています: mysql_fetch_array() はパラメーター 1 がリソースであると想定してい ます。
$sql2 = "SELECT users.user_id, users.username, users.profile, post_id, post_content, post_date, post_topic, post_by, topics.category, topic.sub_category
FROM `posts`
JOIN `users` on posts.post_by = users.user_id WHERE post_topic='$id'
JOIN `topics` on posts.post_topic = topics.topic_id";