email = $email | username = $username
"; $query = "UPDATE `users` SET `password`='$cleanpw', `password_hint`='$password_hint' WHERE `email`='$email'"; // save the info to the database $results = mysqli_query( $query ); // print out the results if( $results ) { echo( "Your changes have been made sucessfully.

Back to Login
" ); } else { die( "Trouble saving information to the database: " . mysqli_error() ); } } else { echo"Your new passwords do not match. Please try again"; } ?>