%PDF- %PDF-
Direktori : /home/ugotscom/public_html/dg/application/modules/api/models/ |
Current File : /home/ugotscom/public_html/dg/application/modules/api/models/Api_model.php |
<?php class Api_model extends CI_Model{ public function __construct() { parent::__construct(); } // code for login api public function login_api($username,$password){ $this->db->select('*'); $this->db->from('users'); $this->db->where('username',$username); $this->db->where('password',$password); $query = $this->db->get(); return $query->num_rows(); } } ?>