Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function e($kode){
- $data_kode = array('id'=>$kode);
- $data['data_buku']=$this->M_buku->cari_data($data_kode);
- $this->load->view('edit',$data);
- }
- function edit(){
- $judul = $this->input->post('judul');
- $tebal = $this->input->post('tebal');
- $penerbit = $this->input->post('penerbit');
- $id = $this->input->post('id');
- $data_kode = array('id'=>$id);
- $data_buku = array(
- 'judul'=>$judul,
- 'tebal'=>$tebal,
- 'penerbit'=>$penerbit
- );
- $this->M_buku->edit_data($data_kode,$data_buku);
- redirect('C_buku');
- }
Advertisement
Add Comment
Please, Sign In to add comment