smf データベースから最新の 10 件のトピックを取得しようとしていますが、トピックは 2 つの別々のテーブルにあります。
Subject, Post Time and Message ID in smf_messages.
Topic ID and Topic First Message in smf_topics.
トピックを取得するためにこのコードを書きましたが、これら 2 つの結果を比較する方法がわかりません。
$result = mysql_query("select subject,id_msg,id_topic from smf_messages");
$result2= mysql_query("select id_first_msg from smf_topics");
if(mysql_num_rows($result)!=0)
{
while($read = mysql_fetch_object($result))
{
if ($read->id_msg==$read->id_topic) {
echo "<a href='../index.php?topic=" . $read->id_topic . "'>".$read->subject."</a><br>";
}
}