changing the password row in my database but is not working | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

changing the password row in my database but is not working

<?php if (isset($_POST['submit'])) { include_once 'dbh.inc.php'; $hashedPwd = password_hash($newpwd, PASSWORD_DEFAULT); $sql = "UPDATE users SET user_pwd = $hashedPwd WHERE user_id = $_POST['email']"; } if (mysqli_query($conn, $sql)) { echo "Record updated successfully"; } else { echo "Error updating record: " . mysqli_error($conn); } mysqli_close($conn); ?> note that $newpwd is the new password the person has just typed in the html form

3rd Mar 2018, 7:48 PM
Franklyn Omeben
Franklyn Omeben - avatar
1 Answer
+ 1
some websites references to mysqli_connect_error() and mysqli_connect_errno() for troubleshooting. Maybe you can try those to get your error and search it. Hope it helps
10th Mar 2018, 3:31 PM
Arda Aydın
Arda Aydın - avatar