Advertisement
Guest User

Untitled

a guest
Aug 10th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. Class Model_panel extends CI_Model{
  4. function construct(){
  5. parent::__construct();
  6. }
  7.  
  8. function login($username,$password){
  9. $query=$this->db->query("SELECT * FROM users WHERE username='$username' AND password=MD5('$password') LIMIT 1");
  10. return $query;
  11. }
  12. }
  13.  
  14.  
  15.  
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement