This question already has answers here:
Secure hash and salt for PHP passwords
(14个回答)
How do I create and store md5 passwords in mysql
(9个答案)
7年前关闭。
谁能告诉我或解释我如何将密码插入md5格式的数据库中?即使您可以指出正确的方向,还是我将不胜感激,因为我对mysql还是陌生的。
但是
Encryption and Compression Functions SQLFiddle Demo
(14个回答)
How do I create and store md5 passwords in mysql
(9个答案)
7年前关闭。
谁能告诉我或解释我如何将密码插入md5格式的数据库中?即使您可以指出正确的方向,还是我将不胜感激,因为我对mysql还是陌生的。
$query="INSERT INTO ptb_users (id,
user_id,
first_name,
last_name,
email )
VALUES('NULL',
'NULL',
'".$firstname."',
'".$lastname."',
'".$email."',
'".$password."'
)";
mysql_query($query) or dieerr();
$result = mysql_query("UPDATE ptb_users SET ptb_users.user_id=ptb_users.id");
最佳答案
使用MD5
,
$query="INSERT INTO ptb_users (id,
user_id,
first_name,
last_name,
email )
VALUES('NULL',
'NULL',
'".$firstname."',
'".$lastname."',
'".$email."',
MD5('".$password."')
)";
但是
MD5
是不安全的。使用 SHA2
。关于php - 将密码以md5格式插入数据库? [复制],我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15434701/
10-14 15:08