Ver Mensaje Individual
  #1 (permalink)  
Antiguo 19/01/2012, 09:10
privatefta
(Desactivado)
 
Fecha de Ingreso: septiembre-2010
Mensajes: 498
Antigüedad: 13 años, 7 meses
Puntos: 5
validar formulario con caracteres espesifico

hola aver como puedo hacer esto tengo un formulario y quiero validarlo con caracteres espesifico.

Este es mi formulario

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  4. <title>Ejemplo</title>
  5. </head>
  6.  
  7. <form action="">
  8. Nombre: * <input type="text" name="nombre" /><br />
  9. Contraseña: * <input type="text" name="passw1" /><br />
  10. Confirmar Contraseña: * <input type="text" name="passw2" /><br />
  11. E-mail: * <input type="text" name="email" /><br />
  12. <input name="Aceptar" type="submit" value="Aceptar" />
  13. </form>
  14. </body>
  15. </html>