Posts

Showing posts from November, 2025

avatar

Image
 

code2

if ($_SERVER['REQUEST_METHOD'] == 'POST') {             //*******update in settlement_basic */                 $sk_code = null;                 $co_code = null;                 // if(trim($lmdata['sk_availability']) == 'y')                 if ('1' == '2') {                     $pending_officer = 'SK';                     $sk_code = $this->input->post('co_code');                 } else {                     $pending_officer = 'CO';                     $co_code = $this->input->post('co_code');                 } ...

code1

public function applicationLabourLineLandRegistration($review_flag = false)     {         $this->db = $this->load->database('db2', TRUE);         $lmdata['district_all'] = $this->db->query("Select * from district_details")->result();         $this->LabourLineModel->dbSwitchSession();         $application_no = $this->input->get('app');         $application_no = $this->LabourLineModel->decryptJwtCase($application_no);         // $geo_date_query = $this->db->query("Select date_entry from supportive_document where applid='$application_no'")->row();         $this->db->select('date_entry');         $this->db->from('supportive_document');         $this->db->where('applid', $application_no);         $geo_date_query = $this-...