gpt4 book ai didi

php - session ['username'] 未设置

转载 作者:行者123 更新时间:2023-12-05 03:15:23 25 4
gpt4 key购买 nike

我有一个表单,它接受用户名并在提交后将其放入 SESSION 中。现在,当我检查 SESSION 用户名是否存在并回显它时,它会完美地显示结果,但是当我想重定向到另一个页面时,如果同一个 SESSION 不为空,它会告诉我 SESSION 不存在。

我不明白?!

if(isset($_POST['submit'])){
$user = $_POST['username'];
$_SESSION['username'] = $user;

echo $_SESSION['username']; // This shows me the result perfectly

if(isset($_SESSION['username'])){
header('location:index.php?page=dashboard&user='.$_SESSION['username'].'');
}
else{
echo "SESSION user isn't set."; // This is the result I get from the isset()
}
}

Value 10106 是我想在这部分得到的值,我的页面打印这个:

SESSION user isn't set10106

它执行重定向但无法加载任何内容,因为 SESSION 为空,但是当我单击我的按钮注销时它确实显示了 URL 中的值:

action=logout&user=10106

这意味着 session 已设置。但是 isset() 仍然给我一个错误的结果。我没有忘记 session_start(),否则我的 echo 也不会给我结果。

这是我提交的表格:

<form action='index.php?page=login' method='post'>
<table id='login'>
<tr>
<td colspan=2><br></td>
</tr>
<tr>
<td>User:</td>
<td><input type='username' name='username'></td>
</tr>
<tr>
<td>Password:</td>
<td><input type='password' name='password'></td>
</tr>
<tr>
<td colspan=2><input type='submit' name='submit'></td>
</tr>
</table>
</form>

额外信息:

当我点击提交时,它停留在同一页面上,URL 没有改变,但我的菜单改变了。设置 SESSION 用户名后菜单会发生变化,因此当我单击菜单中的另一个 URL 时,它会在 URL 中显示 SESSION。

index.php?page=new_call&user=10106

编辑:好的,所以问题不是未设置的 SESSION,而是重定向不起作用。提交表单后,它应该重定向但现在仍停留在同一页面上。

最佳答案

session_start();
$user = "admin";

if(!isset($_SESSION['user_name'])){
if($_POST){
if($_POST['username'] == $user){
$_SESSION['user_name'] = $user;
} else {
echo "SESSION user isn't set.<br>";
}

}
echo "input your session username ";
} else {
echo "Youve got Session " . $_SESSION['user_name'];
}

试试吧:D

关于php - session ['username'] 未设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17541861/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com