18 lines
347 B
PHP
18 lines
347 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class ModelAnggota extends CI_Model{
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
//Codeigniter : Write Less Do More
|
|
}
|
|
|
|
public function get_anggota($iddata_user)
|
|
{
|
|
return $this->db->get_where("data_user",["iddata_user"=>$iddata_user]);
|
|
}
|
|
|
|
}
|