devasatrio

edit_01

Apr 7th, 2018
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php
  2. class M_buku extends CI_Model
  3. {
  4.  
  5.  function tambah_data($data_buku){
  6.  $this->db->insert('tb_buku',$data_buku);
  7. }
  8.  
  9.  function tampil_data(){
  10.   $hasil = $this->db->get('tb_buku')->result();
  11.   return $hasil;
  12. }
  13.  
  14. }?>
Advertisement
Add Comment
Please, Sign In to add comment