Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*Adaptação de https://gist.github.com/anonymous/9123806 */
- public function auth() {
- $this->db->select('id_user, email, senha');
- $this->db->where('email', $this->input->post('email'));
- $query = $this->db->get('usuarios');
- if($query->num_rows() != 1) {
- die('O e-mail não está correto! ou possue mais de 01 usuario com este email cadastro ');
- } else {
- $Resultado = $query->row_array();
- if($Resultado['senha'] === sha1($this->input->post('senha'))){
- $data = array(
- 'id_user' =>$Resultado['id_user'],
- 'logged' => TRUE
- );
- $this->session->set_userdata($data);
- }else{
- die('A senha não é valida!');
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement