PHP重定向不显示重定向到的页面内容

时间:2017-05-24 14:51:29

标签: php redirect

Page1.php代码;

...
header('Location: editt.php?msg=landing&msisdn='.$msisdn);
...

page2.php code;

$msisdn = $_GET['msisdn'];
$msg = $_GET['msg'];
echo 'Page 2 Content '.$msisdn;

2 个答案:

答案 0 :(得分:0)

你发布的代码片段,可能在你的代码的其余部分有一些html输出rs = stmt.executeQuery(sql); 之前,如果有的话,这也可以包含在一些包含的文件中。

更新:

有关同一问题的一些有用答案可以在这里找到:

php-header-redirect-not-working

答案 1 :(得分:0)

为什么不使用标头作为数据的容器:

header('msg: msgValue');
header('msisdn: msisdnValue');
header('Location: editt.php');

在edit.php中

$headers = apache_request_headers();

foreach ($headers as $header => $value) {
    echo "$header: $value <br />\n";
}