I want to use md5() and crypt() together in php login authentication.
I tried to use md5(crypt(string),salt); but i can’t login in mysql.
Does anyone know how to use them together? Thanks a lot.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’ve got the salt in the wrong function for a start:
Also, assuming string and salt are variables you will need to prefix them with $: