通过标头传递php变量

时间:2013-12-28 20:53:32

标签: php redirect header

我想通过标头传递一个变量。在我的系统中,用户停留在个人资料页面上,然后单击链接以填写并提交表单。提交表单后,页面将重定向到配置文件页面。当我显示个人资料页面时,会员ID已丢失,因此不显示会员详细信息。我想要做的是在重定向发生时传递成员ID。

function redirect_to($location = NULL){
    if($location != NULL){
        header("Location:{$location}");
        exit;
    }
}


redirect_to('member_profile.php');

我想要做的就是这个

redirect_to('member_profile.php?id=$mselcted_memberI');

1 个答案:

答案 0 :(得分:2)

您正在使用单引号',这将使其成为文字字符串,而是使用.连接

redirect_to('member_profile.php?id='.$mselcted_memberI);

此外,您不需要大括号{}

header("Location:$location");