当我尝试从我在第一个脚本中设置status
的$_REQUEST[]
数组中检索变量时(然后进行重定向),我只看到一个警告Undefined index: status
。这是为什么 ?
<?php
$_REQUEST['status'] = "success";
$rd_header = "location: action_script.php";
header($rd_header);
?>
动作脚本.php
<?php
echo "Unpacking the request variable : {$_REQUEST['status']}";