我已经尝试过“已经存在”,但我需要使用相同功能的“不存在”而不是“已经存在”的帮助。
登录.php
public function email_exist($id) {
$this->db->where('email', $id);
$query = $this->db->get('login');
if ($query->num_rows() > 0) {
$this->form_validation->set_message(__FUNCTION__, 'Already exist!');
;
return FALSE;
} else {
return TRUE;
}
}
如果数据库中不存在电子邮件,则必须在登录页面中显示电子邮件不存在。
慕的地10843
蛊毒传说