I've been reading up on the usage of the PHP Password_Hash Function it states that it automatically generates a salt and manually generating one is not advised.
With this in mind, does this mean I can execute the following code:
$password = password_hash('mypassword', PASSWORD_DEFAULT);
creating a hashed and salted password that needs nothing further doing to it other than storing into a MySQL table column?