Guest User

Untitled

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