
PHP Tutorial: MD5 Encryption (Update)
Ok, since my last MD5 tutorial wasn't explained well, I thought I would repost another one.
[PHP]
<?php
// lets just make up a password
$password = "Password";
// now the MD5 hash (MD5HE = MD5 Hash Encryption)
$MD5HE = md5($password);
echo $MD5HE;
?>
[/PHP]
And there you go, hope that was explained better.