使用请求php重定向到另一个页面

时间:2014-04-17 16:30:22

标签: php request

我有一个php a.php,它接受​​

发布给它的所有参数
$_REQUEST

我需要将请求重定向到b.php以及a.php中收到的$ _REQUESTs。 这怎么可能请帮助

2 个答案:

答案 0 :(得分:0)

如果您只需要b.php可用的数据,那么您只需include "b.php"

答案 1 :(得分:0)

在你的a.php中试一试,重定向到b.php

$array=array($_REQUEST['name1'],$_REQUEST['name2']);//form your array
$array=json_encode($array); 

header('Location:b.php?q='.$array.'');

在b.php中

$data=$_REQUEST['q'];
$data=json_decode($data);//you got array here and get the data from here

使用带有键值的数组,它会更好