慕粉_阿海
2017-03-22 16:15
我登陆的时候设置的session,session是一个关联数组
public function loginsbumit(){
if(empty($_POST['username']) && empty($_POST['password'])){
return false;
}
$username=addslashes($_POST['username']);
$password=addslashes($_POST['password']);
if($this->auth=$this->checkuser($username,$password)){
$_SESSION['auth']=$this->auth;
return true;
}else{
return false;
}
}
登陆后跳转一个页面,在执行另一个方法时候我想查看session的值怎么都报错;
另一个页面有没有开启session?
MVC架构模式分析与设计
82396 学习 · 929 问题
相似问题