Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- error_reporting(E_ALL);
- ini_set('display_errors', '1');
- if(isset($_POST['login'])) {
- require 'classes/UserLogin.php';
- $username = $_POST['username'];
- $password = $_POST['password'];
- $ul = new UserLogin();
- $ul->godkendt($username, $password);
- echo $ul->godkendt();
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment