gpt4 book ai didi

php - 数据库插入不工作(MySQL、PHP)

转载 作者:行者123 更新时间:2023-11-30 22:15:36 25 4
gpt4 key购买 nike

我有这个 PHP,基本上用于将电子邮件和密码插入 SQL 数据库:

<?php  
error_reporting(E_ALL ^ E_STRICT);
require "database.php";
$message = '';

if (!empty($_POST["email"]) &&!empty($_POST["password"])):
//Enter the new user in the database
$sql = "INSERT INTO users (email, password) VALUES (:email, :password)";
$stmt = $conn->prepare($sql);

$stmt->bindParam(":email", $_POST['email']);
$stmt->bindParam(":password", password_hash($_POST['password'], PASSWORD_BCRYPT));

if ($stmt->execute() ):

$message = 'Successfully created a new user';
else:
$message = 'Sorry there must have been an issue whilst registering';
endif;

endif;
?>

这是表格:

<div class="jumbotron" id="jumbotron-6">
<div class="container text-center">
<?php if (!empty($message)):
?>
<h3 id="h3message"><?= $message ?> </h3>
<?php endif; ?>
<form action="signup.php" method="POST">
<input type="text" placeholder="enter your email" name="email">
<input type="password" placeholder="and password" name="password">
<input type="password" placeholder="confirm password" name="confirm_password">
<input type="submit">
</form>
</div>
</div>

它没有插入数据库(我认为所有字段、变量都是正确的——只是电子邮件和密码),它返回了我创建的错误消息,上面写着“抱歉,注册时一定有问题” '

这里是database.php文件

<?php 

$server = 'localhost';
$username = "root";
$password = "";
$database = "auth";

try{
$conn = new PDO ("mysql:host={$server};dbname={$database};" , $username, $password);
}
catch (PDOException $e) {
die ( "Connection failed; " . $e->getMessage());
}

?>

最佳答案

在绑定(bind)之前散列密码:

$UserPWHash = password_hash($_POST['password'], PASSWORD_BCRYPT);

$stmt->bindParam(":password", $UserPWHash));

关于php - 数据库插入不工作(MySQL、PHP),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38414677/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com