Guest User

Untitled

a guest
Jan 20th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <?php
  2.  
  3. <?php
  4.  
  5. if ($this->form_validation->run() == FALSE)
  6. {
  7. $this->login();
  8. }
  9. else
  10. {
  11. $correo = $this->input->post('correo');
  12. $pass = $this->input->post('pass');
  13. $user = $this->Auth_model->getUser($correo);
  14. print_r($user);
  15. exit;
  16. }
  17. }
Add Comment
Please, Sign In to add comment