public function dcr() {     $query = $this->db->query("SELECT * FROM church_repo");     foreach ($query->result() as $row) {         $data = array('churchName'           => $row->church_name,                       'streetAddress'       => $row->street_address,                       'locationalState'     => $row->locational_state,                       'locationalZIP'       => $row->locational_zip,                       'locationalCountry'   => $row->locational_country,                       'locationalCity'      => $row->locational_city,                       'overseerAccountId'   => $row->overseer_account_id,                       'taxExemptionNumber'  => $row->tax_exemption_number,                       'accountStatus'       => $row->status,                       );         $this->load->view('admin-request', $data);     } }   I...