Guest User

Untitled

a guest
May 24th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2.  
  3. class User_model extends CI_Model{
  4.  
  5. function return_users(){
  6. $this->load->database();
  7.  
  8. $query = $this->db->query("SELECT * FROM user");
  9.  
  10. $query->result_array();
  11. // echo "<pre>";
  12. // print_r($query->result_array());
  13. // echo "</pre>";
  14. return $query->result_array();
  15.  
  16. }
  17. }
  18. ?>
Add Comment
Please, Sign In to add comment