login.PHPページが空白になります。私は私が考えることができるすべてを変えようとしました。私はおそらく単純な何かが欠けていることを知っています。エラーを返すことになっています。これがlogin.PHPのコードです(別のエラーレポーターをオンにして、どのエラーが発生し、「array()」が発生するかを確認しました。
include 'core/init.php';
if (empty($_post) === false){
$username = $_post['username'];
$password = $_post['password'];
if (empty($username)=== true || empty($password) === true) {
$errors[] = 'You need to enter a username and password.';
}
else if (user_exists($username) ===false) {
$errors[] = 'We can\'t find that username. Have you registered?';
}
else if (user_active($username) ===false){
$errors[] = 'You haven\'t activate your account yet.';
}
}
print_r($errors);
ini_set('display_errors',1);
error_reporting(E_ALL);
よろしくお願いします!