D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ksclnmuac
/
public_html
/
alumni
/
application
/
models
/
admin
/
Filename :
AuthenticationManagement.php
back
Copy
<?php /** * Description of User * * @author Softpro India Pvt. Ltd. */ class AuthenticationManagement extends CI_Model { //put your code here public function __construct() { parent::__construct(); } function authenticateAdmin($username, $password) { $this->db->select("*"); $this->db->from("tbl_admins"); $this->db->where("admin_userid", $username); $this->db->where("admin_password", $password); return $this->db->get(); } }