I have encrypt the password using the MySQL function md5(), I need to decrypt the password, Any one can help. Thanks.
MD5 is a hashing method, not an encryption, so you cannot decrypt it. You can however use a rainbow table such as md5.rednoize.com or you can brute force it.
I strongly recommend you do not use MD5. Use something like crypt() instead. A simple example; $salt = '$2a$07$R.gJb2U2N.FmZ4hPp1y2CN$'; crypt("YourPasswordHere", $salt);