0

我想将查询字符串作为 php 中另一个查询字符串的值传递。]

我的代码:

$url3="http://hscore3.php?try=1&name=xyz";
$string3="http://ww.php?url=".$url3;
header("location:$string3");

在 ww.php 中:

echo $_REQUEST['url'];

在这样做时,我得到的输出为:

"http://hscore3.php?try=1"

但我想要:

"http://hscore3.php?try=1&name=xyz"

如何得到这个?有什么建议么?

4

1 回答 1

1
$url3="http://hscore3.php?try=1&name=xyz";
$string3="http://ww.php?url=".rawurlencode($url3);
header("location:$string3");
于 2013-10-24T05:52:46.777 回答