Ikki_wrs

cont_ci

Jan 12th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. public function tambah_tabungan(){
  2. if(isset($_GET['term'])){
  3. $result = $this->berandaModel->cari_kode($_GET['term']);
  4. if(count($result)>1){
  5. foreach($result as $row)
  6. $arr_result[] = array(
  7. 'label' =>$row->kd_agt,
  8. 'nm_agt' =>$row->nm_agt,
  9. 'saldo_tb' =>$row->saldo_tb,
  10. );
  11. echo json_decode($arr_result);
  12. }
  13. }
  14. //$this->template('tabungan/form_tabungan');
  15. $this->load->view('tabungan/form_tabungan');
Advertisement
Add Comment
Please, Sign In to add comment