Say I have a platform, and I want to store a password.
Is it more secure to store the password prefixed with the users email, then to hash it then just hashing the password?
Example,
$hash = md5($email.$password);
Rather then just
$hash = md5($password);
Then to store the variable $password.