<form action="index.php" method="get">
<input type="text" name="route" value="account/account">
<input type="submit">
</form>
此表单将在地址栏上显示URL,如下所示:
/index.php?route=account%2Faccount
如何在地址栏上创建这样的URL?
/index.php?route=account/account
我正在尝试使用urldecode()
,但它不起作用..
我是程序员的初学者,谢谢你的帮助..