Я делаю форму входа с подготовленными заявлениями, у меня уже есть форма регистрации, где эти данные находятся в базе данных. Теперь моя форма входа не возвращает «Привет, вы вошли в систему». Я дважды проверил все переменные, соответствующие моей, в моем БД и коде, локальный хост верен, html в порядке. Спасибо
<?php
// Include config file
require_once 'config.php';
// Define variables and initialize with empty values
$Email = $Password = "";
$Email_err = $Password_err = "";
// Processing form data when form is submitted
if($_SERVER["REQUEST_METHOD"] == "POST"){
// Check if Email is empty
if(empty(trim($_POST["Email"]))){
$Email_err = 'Please enter Email.';
} else{
$Email = trim($_POST["Email"]);
}
// Check if Password is empty
if(empty(trim($_POST['Password']))){
$Password_err = 'Please enter your Password.';
} else{
$Password = trim($_POST['Password']);
}
// Validate credentials
if(empty($Email_err) && empty($Password_err)){
// Prepare a select statement
$sql = "SELECT Email, Password FROM people WHERE Email = ?";
if($stmt = mysqli_prepare($link, $sql)){
// Bind variables to the prepared statement as parameters
$param_Email = $Email;
// Set parameters
mysqli_stmt_bind_param($stmt, "s", $param_Email);
// Attempt to execute the prepared statement
if(mysqli_stmt_execute($stmt)){
// Store result
mysqli_stmt_store_result($stmt);
// Check if Email exists, if yes then verify Password
if(mysqli_stmt_num_rows($stmt) == 1){
// Bind result variables
mysqli_stmt_bind_result($stmt, $Email, $hashed_Password);
if(mysqli_stmt_fetch($stmt)){
if(Password_verify($Password, $hashed_Password)){
/* Password is correct, so start a new session and
save the Email to the session */
session_start();
$_SESSION['Email'] = $Email;
echo "Hello! You are signed in!";
} else{
// Display an error message if Password is not valid
$Password_err = 'The Password you entered was not valid.';
}
}
} else{
// Display an error message if Email doesn't exist
$Email_err = 'No account found with that Email.';
}
} else{
echo "Oops! Something went wrong. Please try again later.";
}
}
// Close statement
mysqli_stmt_close($stmt);
}
// Close connection
mysqli_close($link);
}
?>