• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

how to get multiple form validation for single form

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i am biginner in dis area.please try to sort out my problem.........

<form name ="myForm1" action ="surl" onsubmit="return validateForm1()" method="Post1" >
<h2><center><u><FONT COLOR="blue">New User</FONT></u></center></h2>
<h2><center><i><FONT COLOR="green">Sign Up Here</FONT></i></center></h2>
<table align="center">
<tr>
<td>Name :</td>
<td><input type="text" name="name" ></td>
</tr>
<tr>
<td>E-mail :</td>
<td><input type="text" name="email" ></td>
</tr>
<tr>
<tr>
<td>User Name :</td>
<td><input type="text" name="user" ></td>
</tr>
<tr>
<td>Password :</td>
<td><input type="password" name="pwd" ></td>
</tr>
<tr>
<td>Address :</td>
<td><input type="text" name="address" ></td>
</tr>
<tr>
<td>Gender :</td>
<td><input type="radio" name="gender" value="male" >Male
<input type="radio" name="gender" value="female">Female
</td>
</tr>
<tr>
<td>Birthday :</td>
<td><input type="text" name="birthday"><i><font color=red>dd-mm-yyyy</font></i></td>
</tr>
<tr>
<td><center><input type="Submit" value="Create New Account"></center></td>
</tr>
</table>
</form>
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

ankur guleria wrote:i am biginner in dis area


Please check your spelling "beginner" and "this". Thanks.

You'll need to give us more information on what you are trying to do.
 
reply
    Bookmark Topic Watch Topic
  • New Topic