Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过动态分配的页码浏览我的网站。例如,当我发布一个新主题时,它应该显示在主页上,并且之前的帖子应该自动切换到“第 2 页”。我想在不使用 CMS 的情况下做到这一点。
使用 foreach 循环遍历帖子,并为每个帖子创建一个链接并显示带有您想要的数字的链接,如下所示:
(假设$posts是一个url数组)
$posts
<? $page_number = 1; foreach($posts as $key) { ?> <a href="<?= $key; ?>">Page <?= $page_number; ?></a> <? $page_number++ ?> <? } ?>