我有一个登录页面如下:
<form action="?" method="post" id="frm-useracc-login" name="frm-useracc-login" >
<div id="login-username-wrap" >
<div class="login-input-item left">
<div class="div-search-label left">
<div id="div-leftheader-wrap">
<p class="a-topheader-infotext left"><strong>Username: </strong></p>
</div>
</div>
<div class="login-input-content left div-subrow-style ui-corner-all">
<input type="text" tabindex="1" name="txt-username" id="txt-username" class="input-txt-med required addr-search-input txt-username left">
</div>
</div>
</div>
<div id="login-password-wrap" >
<div class="login-input-item left">
<div class="div-search-label left">
<div id="div-leftheader-wrap">
<p class="a-topheader-infotext left"><strong>Password: </strong></p>
</div>
</div>
<div class="login-input-content left div-subrow-style ui-corner-all">
<input type="password" tabindex="1" name="txt-password" id="txt-password" class="input-txt-med required addr-search-input txt-password left">
</div>
</div>
</div>
<div id="login-btn-bottom" class="centre-div">
<div id="login-btn-right">
<button name="btn-login" id="btn-login" class="btn-med ui-button ui-state-default ui-button-text-only ui-corner-all btn-hover-anim btn-row-wrapper left">Login</button>
<button name="btn-cancel" id="btn-cancel" class="btn-med ui-button ui-state-default ui-button-text-only ui-corner-all btn-hover-anim btn-row-wrapper left">Cancel</button><br /><br />
</div>
</div>
</form>
这里是我的session.controller.php文件:
基本上,我想要做的是创建第二个登录页面,自动将值传递给会话控制器并登录。例如,如果我转到login-guest.php,我会将用户名的默认值设置为和密码,然后有一个jquery点击事件,使用$("#btn-login").trigger('click');
问题是,如果会话超时,会话控制器会自动返回login.php,我不知道如何实现这一目标。任何帮助将不胜感激!
答案 0 :(得分:2)
正如您在评论中提到的,您必须知道用户首先登录的方式(登录或登录访客),因此您需要为每个用户提供某种状态。
现在,如果您无法将会话超时增加到无限,则可能需要将登录类型存储在cookie中的其他位置,或者作为URL中的查询字符串。
对于cookie,它将是这样的:
在login-guest.php
的登录部分:
...
$expire = 60 * 60 * 24 * 30 * 24 + time(); // 2 years
setcookie('logintype', 'guest', $expire);
这是您将用户发送到登录页面的位置:
if(isset($_COOKIE['logintype']) && $_COOKIE['logintype']=='guest'){
header('Location: login-guest.php');
} else {
header('Location: login.php');
}
我不认为饼干可以有无限的生命,所以我已经设定了两年的到期时间你可以改变。显然,如果用户删除cookie或使用其他浏览器,它将不会持续存在。
答案 1 :(得分:0)
您应该使用登录类型(例如:已注册,来宾)在每个登录表单上使用额外字段解决您的问题,并使用此值执行所需的重定向或您需要的任何其他逻辑吗?
您还可以将此登录类型保留在会话/ cookie中以供进一步使用。
答案 2 :(得分:0)
您可以为每个表单添加一个简单的隐藏输入:
<input type="hidden" name="login_type" value="guest" />
然后,您将根据执行的登录类型重定向:
if($_POST['login_type'] == 'guest') {
header('Location: login-guest.php');
}
else {
header('Location: login.php');
}
当然有更好的解决方案,你应该总是过滤输入等,但为了简单起见,你去了。