Advertisement
ksubagja

controler

Jan 7th, 2021
629
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. public function cetak()
  2.     {
  3.         $this->load->model('Penduduk_model');
  4.         //   $data['penduduk'] = $this->Penduduk_model->getAllData('tbl_penduduk')->result();
  5.         $data['tbl_penduduk'] = $this->Penduduk_model->cetak_penduduk($this->uri->segment('3'));
  6.         $this->load->view('admin/cetak_penduduk', $data);
  7.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement