通过post传递标头中的php变量

时间:2015-11-24 23:25:07

标签: php

我想在标题中传递一个带有post的php变量,这很简单,但是我想使用post将其隐藏在url中。

第1页

$password=$tab['password_view'];
header("location:page2.php");

第2页

echo $password;

1 个答案:

答案 0 :(得分:0)

第1页:

<?php

session_start();
$_SESSION['my_saved_variable'] = $my_local_variable;

第2页:

<?php

session_start();
echo $_SESSION['my_saved_variable'];

在使用会话变量之前,检查会话变量可能是个好主意。