Advertisement
Guest User

model_excel

a guest
Jan 20th, 2020
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <?php
  2.  
  3. if (!defined('BASEPATH'))
  4. exit('No direct script access allowed');
  5.  
  6. class Mod_usaha extends CI_Model
  7. {
  8.  
  9. public $table = 'usaha';
  10. public $id = 'idusaha';
  11. public $order = 'DESC';
  12.  
  13. function __construct()
  14. {
  15. parent::__construct();
  16. }
  17.  
  18. function insert_pemilik($data)
  19. {
  20. $this->db->insert_batch('usaha_pemilik', $data);
  21. }
  22.  
  23. function insert_usaha($result)
  24. {
  25. $this->db->insert_batch('usaha', $result);
  26. }
  27. }
  28. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement