Vote count: 0
Controller code below as show unable to login. none of the error getting what is the problem i cannot understand how to call through ajax
public function loginn()
{
$email=$this->input->post('email');
$password=$this->input->post('password');
//$this->load->library('form_validation');
$this->form_validation->set_rules('email', 'Email or number', 'required|min_length[10]|max_length[30]');
$this->form_validation->set_rules('password', 'password', 'trim|required|min_length[4]|max_length[40]');
if ($this->form_validation->run() && $this->Login_model->login($email, $password)) {
$this->welcome();
}
else {
$this->form_validation->set_message('check_database', 'Invalid username or password');
$this->index();
}
}
asked 47 secs ago
user name and password login through ajax.. unable to login
Aucun commentaire:
Enregistrer un commentaire