D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ksclnmuac
/
public_html
/
alumni
/
application
/
models
/
admin
/
Filename :
AccessLogManagement.php
back
Copy
<?php /** * Description of User * * @author Softpro India Pvt. Ltd. */ class AccessLogManagement extends CI_Model { //put your code here function getAccessLogs() { $this->db->select("*"); $this->db->from("tbl_login_logout_details lld"); $this->db->join("tbl_stu_alu sa", "lld.userid=sa.userid"); $this->db->order_by("last_login_time","DESC"); return $this->db->get(); } }