当我使用 Mozilla Firefox 时,我的系统无法登录。 我尝试在不需要会话的情况下登录,并成功进入我的系统。我认为Mozilla没有保存会话。有什么想法吗?
public function login_user(){
$data = array(
'name' => $this->input->post('name'),
'pass' => $this->input->post('pass')
);
if($data['name'] == 'test' and $data['pass'] == 'test' ){
$this->session->set_userdata('user_name','test');
return redirect('cicrud/Post');
} else {
return redirect('cicrud/login');
}
}
请参考此代码
并在您的视图文件中键入此代码,然后检查"测试"输出中显示
的$this->session->userdata('user_name')
这不是Mozilla Firefox浏览器的问题。 您能否分享您的代码,然后我们检查问题所在。