我的index.php
页面有一个表格。验证后,参数 fromindex.php
在 URL 中传递到另一个名为test1.php
.
test1.php
有分页,因此,页面不断刷新,我的 URL 参数消失了。我希望我的参数在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'];