guys im always getting this error saying Notice: Undefined variable: errors in C:\xampp\htdocs\registerlogin\login.php on line 26. everything is working fine except lang jud ana nga warning. please help
Code:
<?php
include 'core/init.php';
if(empty($_POST) == false)
{
$username = $_POST['username'];
$password = $_POST['password'];
if(empty($username) OR empty($password))
{
$errors[] = 'You need to enter a username and password';
}
else if(user_exists($username) == false)
{
$errors[] = 'We cant find that username. Have you registered?';
}
else if(user_active($username) == false)
{
$errors[] = 'You havent activated your account';
}
else
{
echo 'account activated';
}
echo $errors;
}
?>