public static function validateLogin($username,$password)
{
$select = $this->select();
$select->where('user_name=?',$username);
$select->where('password=?',$password);
$row = $this->fetchRow($select);
If($row)
{
return $row;
}
}
此代碼不能正常工作,幫助...爲什麼我的登錄功能無效?
是thow任何異常或錯誤?結果可用正常的php運行。 (數據是否可用?) –