Is it possible to create a msgbox with php ???
I want to check the matching of two password fields and display a msgbox with “password not match” !!!
Try this in php:
if($pass1 != $pass2){
echo “<script>alert(“The two password did not match.”);</script>”;
}

Leave a Reply
You must be logged in to post a comment.