password_hash() creates a password. When you use password_verify(), you psas it two things. Firstly, the plaintext password. Then, you pass it the stored hash you created with password_hash(). Internally, it deconstructs the second paramater to see how it was hashed, and then hashes the first...