Advertisement
Guest User

Model

a guest
Sep 19th, 2019
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2. defined('BASEPATH') OR exit('No direct script access allowed');
  3.  
  4. class MDL_upload extends CI_Model {
  5.  
  6. public function hapus_data($id,$table)
  7. {
  8. $this->db->where('id',$id);
  9. $this->db->delete($table);
  10.  
  11. }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement