This is an error I get while trying to make a login for my website, and I can not figure it out.
<?php
session_start();
if($_POST['submit'])
{
$username = $POST['username'];
$password = $POST['password'];
if($username=="" || $password=="")
{
print("Sorry, you have left a blank in the username or password field.")
}else{