|
Server : LiteSpeed System : Linux terra.hostitbro.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : outerorb ( 1091) PHP Version : 8.1.34 Disable Function : mail Directory : /home2/outerorb/hr.outerorbittech.com/application/models/ | |
|
Path: /home2/outerorb/hr.outerorbittech.com/application/models/Notice_model.php
Size: 632 B
Permissions: 0644
<?php
class Notice_model extends CI_Model{
function __consturct(){
parent::__construct();
}
public function GetNotice(){
$sql = "SELECT * FROM `notice` ORDER BY `notice`.`date` DESC;";
$query = $this->db->query($sql);
$result = $query->result();
return $result;
}
public function Published_Notice($data){
$this->db->insert('notice',$data);
}
public function GetNoticelimit(){
$this->db->order_by('date', 'DESC');
$query = $this->db->get('notice');
$result =$query->result();
return $result;
}
}
?>