At 11:37 21/02/02, you wrote: >Bhanu Prakash wrote: > > >HI All, > > Is there a way to Validate the fields of a > >form? Say I have a > >text field, and I should show an error to the user if > >he does not enter > >anything while submitting the form? > Can somebody give me some sample script?! with some >high level explaination? > >Thanks for the help > >Bhanu.
If all you want to do is trap empty fields etc, you might as well use JavaScript: <script language="JavaScript"> <!-- function FormCheck() if (document.formname.fieldname.value == "") { alert("Please enter something into the field"); document.formname.fieldname.focus(); return false; } //--> </script> and <form name="formname" method="post" action="/cgi-bin/yourscript.pl" onSubmit="return FormCheck()"> etc. Your user is gong to be happier just to see an alert box if they've missed out a field, rather than having to submit the form and wait for an error feedback page from your script. (Of course, if you need to validate the data for security or related purposes, you should also validate on server-side, as it's easy to hack JS validation.) best, Mo Mo Holkar Undying King Games [EMAIL PROTECTED] Free games! at http://www.ukg.co.uk -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]