[Solved] I am designing signup page, every time it displays your password dont match
Important note If you’re using this code for anything requiring real security (i.e. not just a student project) MD5 is not an appropriate hashing algorithm. Read through the OWASP advice to learn how to do this properly. Answering your question You have: $psd= md5($_POST[‘psw’]); $confirm_psd= $_POST[‘confirm_psw’]; if ($psd == $confirm_psd) { … which looks like … Read more