...而不是现在正在做的事情,它显示了特定论坛中每个主题的最后回复。
<?php
// How Many Topics you want to display?
$topicnumber = 10;
// Change this to your phpBB path
$urlPath = "../path/to/forum";
// Database Configuration (Where your phpBB config.php file is located)
include '../path/to/forum/config.php';
$table_topics = $table_prefix. "topics";
$table_forums = $table_prefix. "forums";
$table_posts = $table_prefix. "posts";
$table_users = $table_prefix. "users";
$link = mysql_connect("$dbhost", "$dbuser", "$dbpasswd") or die("Could not connect");
mysql_select_db("$dbname") or die("Could not select database");
$query = "SELECT t.topic_id, p.post_text, t.topic_title, t.topic_last_post_id, t.forum_id, p.post_id, p.poster_id, p.post_time, u.user_id, u.username
FROM $table_topics t, $table_forums f, $table_posts p, $table_users u
WHERE t.topic_id = 7 AND
f.forum_id = t.forum_id AND
t.forum_id = 11 AND
t.topic_status <> 2 AND
p.post_id = t.topic_last_post_id AND
p.poster_id = u.user_id
ORDER BY p.post_id DESC LIMIT $topicnumber";
$result = mysql_query($query) or die("Query failed");
print '<div class="news_block">';
while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
echo "<h4><a href=\"$urlPath/viewtopic.php?f=$row[forum_id]&t=$row[topic_id]&p=$row[post_id]#p$row[post_id]\" TARGET=\"\">" .
$row["topic_title"] .
"</a> </h4>By: " .
$row["username"] . ' - ' . date("l", $row["post_time"]) .
"<p>" .
$row["post_text"] . // <-----
"</p>";
}
print "</div>";
mysql_free_result($result);
mysql_close($link);
/* date("l", $row["post_time"]) . date('F j, Y, g:i a', $row["post_time"]) .*/
?>
正如你可能已经知道的那样,我远离编码员。我想我已经把它缩小到p.post_id需要改变,但不管我似乎分配给它的整数或变量,我都无法得到预期的效果。在这一点上真的很感激一些帮助。感谢。
答案 0 :(得分:0)
我认为您必须从查询中删除此部分:
AND p.post_id = t.topic_last_post_id
现在你要求的帖子(只有一个)与主题的最后一个帖子具有相同的ID,但你不想只获得最后一个帖子。你想获得所有帖子。
编辑: 您必须查看数据库并检查邮件表中是否有任何引用该主题的外键。
可以这样想:每个论坛都有很多主题,每个主题都有很多帖子,每个帖子只有一个用户。因此,您必须在表之间建立连接,以确定行如何匹配在一起。
以这种方式加入非常有用。如果使用已包含这些外键的已完成数据库架构,则联接将帮助您连接查询。
这将是一个很好的查询,支持我的解释。
SELECT
*
FROM
$table_forums f
LEFT JOIN
$table_topics t ON t.forum_id = f.forum_id
LEFT JOIN
$table_posts p ON t.topic_id = p.topic_id
LEFT JOIN
$table_users u ON p.poster_id = u.user_id
WHERE
t.topic_id = 7 AND t.forum_id = 11
AND t.topic_status <> 2
ORDER BY p.post_id DESC
LIMIT $TOPICNUMBER