Advertisement
Guest User

Untitled

a guest
May 25th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. if(isset($_POST['login'])) {
  2.    
  3.     require 'classes/UserLogin.php';
  4.     $username = $_POST['username'];
  5.     $password = $_POST['password'];
  6.     $ul = new UserLogin();
  7.     $ul->godkendt($username, $password);
  8.  
  9.     echo $ul->godkendt();
  10.  
  11.    
  12.    
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement