I have this code:
Can anyone develop this so that if u user enters non a-z, 0-9 characters, an error message popsup?
I have tried and tried with no luck
Thanks for reading.
PHP:
<script Language="JavaScript">
<!--
function Form1_Validator(theForm)
{
if (theForm.username.value == "")
{
alert("Please enter a username");
theForm.username.focus();
return (false);
}
}
//--></script>
Can anyone develop this so that if u user enters non a-z, 0-9 characters, an error message popsup?
I have tried and tried with no luck
Thanks for reading.





