Right now I'm using $pass = md5($pass) but was was wondering if I should use crypt() instead.

-aki

    I would recommend that you use the crypt() function, specifically with the blowfish salt. (crypt($var,CRYPT_BLOWFISH)) MD5 is and was never indented for encrypting passwords or any other information.

      Alright, well, since It's just a simple code change, I'll do that.

        Write a Reply...