devasatrio

edit_real_01

Apr 7th, 2018
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. function cari_data($data_kode){
  2.   $this->db->where($data_kode);
  3.   $hasil=$this->db->get('tb_buku')->result();
  4.   return $hasil;
  5.  }
  6.  
  7. function edit_data($data_kode,$data_buku){
  8.   $this->db->where($data_kode);
  9.   $this->db->update('tb_buku',$data_buku);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment