Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- class M_buku extends CI_Model
- {
- function tambah_data($data_buku){
- $this->db->insert('tb_buku',$data_buku);
- }
- function tampil_data(){
- $hasil = $this->db->get('tb_buku')->result();
- return $hasil;
- }
- }?>
Advertisement
Add Comment
Please, Sign In to add comment