我正在尝试从 smf 数据库中获取最后 10 个主题,但主题位于两个单独的表中。
Subject, Post Time and Message ID in smf_messages.
Topic ID and Topic First Message in smf_topics.
我编写了这段代码来获取主题,但我不知道如何比较这两个结果。
$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>";
}
}