Ver Mensaje Individual
  #3 (permalink)  
Antiguo 25/09/2008, 06:02
Avatar de hector2c
hector2c
 
Fecha de Ingreso: noviembre-2007
Ubicación: Perú - Tacna
Mensajes: 979
Antigüedad: 16 años, 5 meses
Puntos: 25
Pregunta Respuesta: No funciona el formulario

tienes un gran problema...

Código HTML:
<form action="contactecris.php" method="post" onSubmit="return form_Validator(this)">
<form id="form1" name="form1" method="post" action="">
<label><span class="formulariotexto"><br />
Nombre</span><br />
<input type="text" name="nombre" id="nombre" />
</label>
</form>
<form id="form2" name="form2" method="post" action="">
<label> <span class="formulariotexto">Apellidos</span><br />
<input type="text" name="apellidos" id="apellidos" />
</label>
</form>
</form> 
tienes un super form y en cada control que estas agregando tambien le añades un form, eso esta muy mal....

solo crea un form para todos tus controles, ejemplo:


Código HTML:
<form action="contactecris.php" method="post" onSubmit="return form_Validator(this)">
<label><span class="formulariotexto"><br />
Nombre</span><br />
<input type="text" name="nombre" id="nombre" />
</label>
<label> <span class="formulariotexto">Apellidos</span><br />
<input type="text" name="apellidos" id="apellidos" />
</label>
</form> 
__________________
blog: hector2c.wordpress.com
email: [email protected]