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-...