freddy0512

model

Mar 20th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php
  2. class Model_front extends CI_Model  {
  3.    
  4. function __construct()
  5.     {
  6.         parent::__construct();
  7.     }
  8.    
  9. public function cari_brand() {
  10.    
  11.     $res = $this->db->get('li_brand');
  12.     if ($res->num_rows() > 0) {
  13.         return $res->result();
  14.     }
  15. }
  16. }
Add Comment
Please, Sign In to add comment