Posted by flamer die.spam@hotmail.com on 09/11/06 00:22
phforum wrote:
> I have no ideas to encrypt the user input password from the text
> box.....
are you wanting to have it encrypted so its safe during transfer over
the internet, or want it encrypted so you can store in a database? as
someone suggested you need to get a ssl certificate and use https:// to
transfer it encrypted, they cost money, if you just want to encrypt the
password after your php script receives it then you can use $password =
md5($password); md5 encryption is irreversable.
Flamer.
[Back to original message]
|