$username = $filter->filter(($this->_request->getPost('username')));
$condition = '`username` = "'.$username.'"';
$row_user = $this -> defaultModel -> fetchAll($condition)->toArray();
$row_user = $row_user[0];
if(empty($row_user['id'])){
parent::showMsgByJS('用户名或密码错误!','-1');exit;
}
if($row_user['state'] != 1){
parent::showMsgByJS('该账号已经被锁定,请联系管理员!','-1');exit;
}
if(!$member->loginValidate($row)){
parent::showMsgByJS('用户名或密码错误!','-1');exit;
}
用户名密码登陆网页时,总显示(用户名和密码错误),是不是这一行代码的问题,
if(!$member->loginValidate($row)){
parent::showMsgByJS('用户名或密码错误!','-1');exit;
}
是什么意思?怎么解决?在线等,谢谢
print($row_user)
这个看看