我试图在网站上加入分页,但我遇到了这个问题。
我有以下行,但我必须index.php
而不是index.php?view_vehicles
。
这是一行:
echo "<a href='index.php?page=$next'>Next</a> ";
这是我第一次遇到这个问题而且我不知道如何让它发挥作用。
答案 0 :(得分:1)
来自评论:
“它必须是这样的:
<a href='index.php?view_vehicles?page=$next'>Next</a>
但它现在正在这样工作。 - AndreiCT
As I stated,其他GET参数在第一个参数后需要&
,而不是2x ?
。
<a href='index.php?view_vehicles&page=$next'>Next</a>
答案 1 :(得分:0)
你应该在你回响的字符串中连接变量$ next:
echo "<a href='index.php?page=".$next."'>Next</>";