Presentasi sedang didownload. Silahkan tunggu

Presentasi sedang didownload. Silahkan tunggu

P EMROGRAMAN W EB II Lasmedi afuan, ST.,M.Cs. T OPIC Model.

Presentasi serupa


Presentasi berjudul: "P EMROGRAMAN W EB II Lasmedi afuan, ST.,M.Cs. T OPIC Model."— Transcript presentasi:

1 P EMROGRAMAN W EB II Lasmedi afuan, ST.,M.Cs

2 T OPIC Model

3 W HAT IS MODEL ?

4 M ODEL Model merupakan bagian dari konsep MVC pada framework Model digunakan untuk berinteraksi dengan data Sebagai catatan, model disimpan di folde Model/

5 A NATOMY M ODEL class User_model extends CI_Model { function __construct () { parent::__construct(); } }

6 M EMANGGIL M ODEL Untuk memanggil model, dapat menggunakan 2 cara Autoload Menggunakan loader $this->load->model(‘user_model’); atau $this->load->model(array(‘user_model1’,’user_model2’));

7 M ODEL class Blog_model extends CI_Model { function __construct () { parent::__construct(); } function get_data() { $query = $this->db->get('entries', 10); return $query->result(); } function tambah_data() { $this->id =‘’; $this->judul = $_POST[‘judul']; $this->isi= $_POST[‘isi']; $this->db->insert('entries', $this); }

8 C ONT... function ubadata() { $this->judul = $_POST[‘judul']; $this->isi= $_POST['content']; $this->db->update('entries', $this, array('id' => $_POST['id'])); } }


Download ppt "P EMROGRAMAN W EB II Lasmedi afuan, ST.,M.Cs. T OPIC Model."

Presentasi serupa


Iklan oleh Google