Guest User

Untitled

a guest
Oct 22nd, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2. class Login
  3. {
  4. public $username;
  5. public $password;
  6.  
  7. public function __construct(){
  8. $this->username = 'test';
  9. $this->password = 'test';
  10. }
  11.  
  12. public function login_user()
  13. {
  14.  
  15. }
  16. }
  17. ?>
Add Comment
Please, Sign In to add comment