我想将查询字符串作为 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"
如何得到这个?有什么建议么?