Bona Rae Villarta
Results
1
comments of
Bona Rae Villarta
In one of my PHP files (processSignup.php) that involves storing the hashed password: ``` php $password = $_POST['password']; $password = $mysqli->real_escape_string($password); $securePassword = password_hash($password, PASSWORD_BCRYPT); ``` then the `$securePassword` variable...