0

我得到了这段代码来将用户重定向到他们的帖子。

我的帖子脚本中的片段,这将得到最后一页:

// Determine on what page the post will be located
$perPage = 10;

$stmt = $db->query("SELECT * FROM posts WHERE topic_id = $id");
$row_count = $stmt->rowCount();
$page_to_redirect_to = ceil($row_count / $perPage);

// further down...

// redirect the user to their newly posted reply
header ("Location: thread.php?id=$id&page=$page_to_redirect_to#post$postid");

现在这很好用。直到最后一页有 10 个帖子。

例如,如果一个主题有 75 页,而在最后一页 (75) 上,它当前是 10 个帖子。现在,如果有人添加新帖子,我希望他们被重定向到第 76 页。

我该怎么做?老实说,我不知道。

4

1 回答 1

0

将以下附加语句添加到您的代码中。

if(($row_count % $perPage)==0)
{
  $page_to_redirect_to++;
}
于 2013-07-27T11:15:29.067 回答