Skip to content
Advertisement

Couldn’t UPDATE password in PHP MySQL

I couldn’t update password to a new one in the change password page and there is no error at all so couldn’t found which is the incorrect part. I’ve checked in MySQL table, and it is not updated. Can someone assist to find it out? Thank you.

PHP code

JavaScript

Body

JavaScript

registered_accounts table Table Structure

Advertisement

Answer

You need to update this new password. And this new password is not current password of the queried user. So the select query is failing to retrieve any result. Remove AND password=’$password’ from $query2, like this:

JavaScript

and also remove the if statement, as there is no need to check again.

JavaScript

Hope this will help, But I also suggest you to use prepared statement to prevent from SQL Injections.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement