babebabebabebabe

Untitled

Apr 2nd, 2019
45
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 M_login extends CI_Model{
  4.  
  5. function cek_admin($user,$pass){
  6. return $this->db->query("SELECT*FROM admin WHERE admin='$user' and password='$pass' ");
  7. }
  8.  
  9. function cek_op($user,$pass){
  10. return $this->db->query("SELECT*FROM operator WHERE op='$user' and password='$pass' ");
  11. }
  12.  
  13. }
  14. ?>
Add Comment
Please, Sign In to add comment