I love md5 encryption
<?/*A simple MD5 password encryption toolCreated By: gikid*///Creates a varible holding the password$password = "The_Password";//Encryptes the password into an "irreversible" MD5 form$encpass = md5($password);//Prints out the encrypted passwordprint($encpass);?>
you should try it out