madhawaseeeee

codeigniter

Apr 9th, 2016
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. class My_Model extends CI_Model {
  2.  
  3.     const DB_TABLE = 'abstract';
  4.     const DB_TABLE_PK = 'abstract';
  5.  
  6.     public function insert() {
  7.         $this->db->insert($this::DB_TABLE,$this);
  8.         $this->{$this::DB_TABLE_PK}=$this->db->insert_id();
  9.     }
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment