[Solved] How do i MD5 crypt password at registration?
You need to use like that for your INSERT Statement: $user_password= md5($_REQUEST[‘user_password’]); Now how can you select md5() password from database after insertion? Its very simple, you must need to follow same step: $user_password= md5($_REQUEST[‘user_password’]); // your input with md5 MD5() PHP Manual As per manual, it will return you the hash as a 32-character … Read more