Advertisement
mfnurfauzi19

M_data.php

Aug 25th, 2019
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2. class M_data extends CI_Model{
  3.  
  4. public function get_data(){
  5. return $this->db->get('client')->result_array();
  6. }
  7.  
  8. public function get_email(){
  9. $data = $this->db->query("SELECT email FROM client");
  10. return $data->result_array();
  11. }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement