我现在在工作中需要一点PHp知识,也下了教程学习了下,现在遇到个问题。我知道这种形式
<form name="form1" method="post" action="Message_Recive.php">
<input name="strContend" type="text" value="123">
<input type="submit" name="submit" value="提交">
</form>
strContend传递到Message_Recive.php页面。现在我是这样的情况 
有个页面get_access_token.php
里面有如下内容 
$_SESSION["token"]   = $result["oauth_token"];
$_SESSION["secret"]  = $result["oauth_token_secret"]; 
$_SESSION["openid"]  = $result["openid"];
我想把$_SESSION["token"]内容传递到
get_user_info.php页面我试用    header("Location:$redirect");转换到指定页面,但我所需要的内容并没有传递过来。应该这2处我应该如何操作呢。。谢谢