Advertisement
Guest User

Untitled

a guest
May 4th, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. class User
  2. {
  3.     private $db;
  4.  
  5.     public function __construct(mysqli $db)
  6.     {
  7.         $this->db = $db;       
  8.     }
  9.  
  10.     public function Login($username, $password)
  11.     {
  12.         $this->db->query("...")
  13.         ...
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement