I have created a simple login system but there seems to be a problem on line 7 and I cannot figure out what it is here is the login page code. I am reletivly new to this so help would be greatly appreciated.[php]<?php
session_start();
require_once ‘classes/membership.php’;
$membership = new Membership();
if ($_POST && !empty ($_POST ['username']) && !empty ($_POST ['pwd'])) {
$responce = $membership->validate_user($_POST['username'], $_POST['pwd']);
}
?>
Login Here
Username
Password
<?php if (isset($responce)) echo "