Guest User

Untitled

a guest
Nov 19th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php
  2.  
  3. class Auth_model extends CI_Model {
  4.  
  5. public function __construct(){
  6. $this->load->database();
  7.  
  8. }
  9.  
  10. public function cek_user($where){
  11. $query = $this->db->get_where('user',$where);
  12. return $query;
  13.  
  14. }
  15.  
  16. }
  17. ?>
Add Comment
Please, Sign In to add comment