0

ビデオチュートリアルに従ってlogin.phpファイルを作成し、空白ページではなくページが存在するようにしようとしています。phpMyAdminで自分の名前でユーザーを作成したので、ユーザーが存在することはわかっています。

彼女はコードです

<?php
include 'core/init.php';

if (user_exists('Denis') === true) {
echo 'exists';
}
die();

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?';
}
}
?>

初期化.php

<?php 
session_start();
error_reporting(0);

require 'database/connect.php';
require 'functions/general.php';
require 'functions/users.php';

$errors = array();
?>
4

4 に答える 4

0

ブール値を返す方法によっては、「==」記号を 3 つではなく 2 つ試すことができます。型キャストができない場合があります。

于 2013-08-21T22:19:56.697 に答える