���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/adimi/application/modules/dashboard/models/ |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Deposits extends CI_Model { public function __construct() { parent::__construct(); } //Count deposit public function count_deposit() { return $this->db->count_all("head_office_deposit"); } //deposit List public function deposit_list($limit,$page) { $this->db->select('*'); $this->db->from('head_office_deposit'); $this->db->limit($limit, $page); $query = $this->db->get(); if ($query->num_rows() > 0) { return $query->result_array(); } return false; } //Count deposit public function deposit_entry($data) { $this->db->insert('head_office_deposit',$data); } //Retrieve deposit Edit Data public function retrieve_deposit_editdata($deposit_id) { $this->db->select('*'); $this->db->from('head_office_deposit'); $this->db->where('deposit_id',$deposit_id); $query = $this->db->get(); if ($query->num_rows() > 0) { return $query->result_array(); } return false; } //Update Categories public function update_deposit($data,$deposit_id) { $this->db->where('deposit_id',$deposit_id); $this->db->update('head_office_deposit',$data); } }