0

我的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'];
4

2 回答 2

0

这可能是因为您正在创建一个名为$param$params在您的urlencode()

于 2013-04-06T17:40:29.857 回答
0

请参阅 $_SERVER['REQUEST_URI'] 并将您的 url 与已经存在的请求变量连接起来。

于 2013-04-06T17:42:13.360 回答