0

我有一个包含变量 $blogid 的登录页面,它从前一页“获取”博客 ID 号。代码是$blogid = strip_tags(htmlentities(stripslashes($_GET['blog']))); 用户登录后,我需要将用户 ID 和博客 ID 传递到另一个页面(comments_post.php)我有以下代码

        $_SESSION['user'] = $userrow[0];
        $_SESSION['pass'] = $userpass;

        die(header("Location: comments_post.php?blog=1&user=$userrow[0]"));

重定向将博客 ID 传递为 1 和正确的用户 ID 号(来自表)。我需要该语句来传递由 $blogid 定义的博客 ID 号。如果我将代码更改为 blog=$blogid ,则仅传递用户 ID。如何让 $blogid 变量传递给 comments_post.php?

4

1 回答 1

4

怎么样

die(header('Location: comments_post.php?blog=' . $blogid . '&user= ' . $userrow[0]));

你也确定 $blogid 被定义了吗?

于 2012-12-20T18:08:29.223 回答