PDO分页 - 链接到上一页/下一页不正确

时间:2014-06-29 14:52:55

标签: php pdo hyperlink pagination target

我刚刚在我的网站上添加了php分页,但我没有设法链接到正确的页面。

背景资料:

人们可以在页面上选择自行车品牌" example.com/bikebrands.php"。 因此,当他们选择" Bianchi"时,它会打开网页" example.com/bikebrands/bianchi"列出了我的数据库中找到的该品牌的所有相关新闻帖子。

我必须设置一个目标页面才能使分页工作。我选择" / bikebrands"但那不正确。 它应该是:

$targetpage = "/bikebrands/**(echo row "bike brand" from database depending on the bike brand the visitor has selected)**?page=2";

所以当有人打开时: example.com/bikebrands/bianchi点击"下一个",它应该加载example.com/bikebrands/bianchi?page=2

当有人打开时: example.com/bikebrands/trek点击"下一个",它应该加载example.com/bikebrands/trek?page=2

页面example.com/bikebrands/bianchi?page=2存在,因此网址本身没有问题,只是因为我没有设法链接到该网页。

我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:1)

假设品牌只是另一个参数,您是否可以使用$_GET['brand']或其任何名称来检索它?

$targetpage = "/bikebrands/" . $GET['brand'] . "?page=" . $next;