如何解决如何使用 PDO 插入散列密码?
当它没有被散列时它被插入但是当它被散列时执行没有通过,为什么?
**get data**
$voornaam = strip_tags($_POST["voornaam"]);
$achternaam = strip_tags($_POST["achternaam"]);
$geboortedatum = strip_tags($_POST["geboortedatum"]);
$email = strip_tags($_POST["email"]);
$ww = strip_tags($_POST["wachtwoord"]);
$wachtwoord = password_hash($ww,PASSWORD_DEFAULT);
echo $wachtwoord;
$adres = strip_tags($_POST["adres"]);
$huisnummer = strip_tags($_POST["huisnummer"]);
$postcode = strip_tags($_POST["postcode"]);
$woonplaats = strip_tags($_POST["woonplaats"]);
$rekeningnummer = strip_tags($_POST["rekeningnummer"]);
**check if all data has been filled in**strong text**
if (!empty($voornaam) || !empty($achternaam) || !empty($geboortedatum) || !empty($email) || !empty($wachtwoord) || !empty($adres) || !empty($huisnummer) || !empty($postcode) || !empty($woonplaats) || !empty($rekeningnummer)) {
include("opendb.PHP");
$stmtinsert = $db->prepare('INSERT INTO gebruikers SET ( voornaam,achternaam,geboortedatum,email,wachtwoord,adres,huisnummer,postcode,woonplaats,rekeningnummer ) VALUES ( ?,?,? )');
$result = $stmtinsert->execute([$voornaam,$achternaam,$geboortedatum,$email,$wachtwoord,$adres,$huisnummer,$postcode,$rekeningnummer,$woonplaats]);
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。