我的index.php
页面有一个表单。验证后,index.php
中的参数会在URL中传递到另一个名为test1.php
的页面。
test1.php
有分页,因此页面会不断刷新,我的网址参数也会消失。我希望我的参数在分页时保留在test1.php
,因为test1.php
中的参数和数据将用于test2.php
index.php
<a href="test1.php?test=".<?php urlencode($var)?> > Go </a>
test1.php
$var1= $_REQUEST['test'];
<a href="test2.php?test=".<?php urlencode($var1)?> > Go </a>
test2.php
$param = $_REQUEST['test'];
答案 0 :(得分:0)
这可能是因为您正在创建名为$param
的变量,但在$params
urlencode()
(带有“s”)
答案 1 :(得分:0)
请参阅$ _SERVER ['REQUEST_URI']并将您的网址与现有的请求变量连接起来。