Advertisement
dewa_01

Untitled

Dec 15th, 2019
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2.     class Model_regis extends CI_Model{
  3.         public function tambah($username, $email, $password, $group){
  4.             $data = array(
  5.                 'username' => $username,
  6.                 'email' => $email,
  7.                 'password' => $password,
  8.                 'group' => $group,
  9.                 );
  10.             $this->db->insert('users',$data);
  11.         }
  12.     }
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement