QUOTE(matthewk @ May 25 2007, 12:51 AM)

Thanks for posting that example form. I am looking for an example form that I can use that is similar to what I've been seeing on new registration forms lately. Basically, after entering a username, it puts a checkmark to the right side of it after I click on the next field to let me know that it is okay. Likewise, this is done after I type a password in the first and second confirmation box to let me know I typed it the same both times. If anyone can show me an example of this, that would be great!

thanks
For your question related with the user verification, it is developed with a combination of Php, Ajax and MySql, yesterday i read at the tizag website a very simple tutorial on how to use Php, Ajax and MySql to achieve this kind of work, don't think that because it is simply it is not complete, you will be surprise with the quality of it.
So, don't waste time and read it at:
Ajax TutorialFor your second question, i think that it is done with javascript only, simply by coding the onchange or the onblur methods of the input boxes, for example if the validation is done only in the second password textbox you can code something like this:
CODE
<html>
<head>
<title>Passwords Check</title>
<script type="text/javascript">
function check_pwds(){
var p1=document.getElementById("pwd1").value;
var p2=document.getElementById("pwd2").value;
if (p1==p2) alert("passwords ok");
else alert("passwords not ok");
}
</script>
</head>
<body>
<form name="b">
<input type="password" name="pwd1" id="pwd1" value="" />
<input type="password" name="pwd2" id="pwd2" value="" onblur="check_pwds()" />
</form>
</body>
</html>
Well, i hope it helps you a bit, as you see it is a very very simple example because i'm a bit busy
Best regards,
Comment/Reply (w/o sign-up)