Ver Mensaje Individual
  #5 (permalink)  
Antiguo 13/08/2007, 11:25
konguy
 
Fecha de Ingreso: agosto-2006
Mensajes: 78
Antigüedad: 17 años, 8 meses
Puntos: 0
Re: Problemas con envio de formulario

Este es el codigo del formulario en la pagina html


<form id="form1" name="form1" method="post" action="formulario.php">
<table width="100%" border="0">
<tr>
<td width="44%" height="30"><div align="center" class="Estilo4">Nombre</div></td>
<td width="56%"><input name="nombre" type="text" size="35" maxlength="20" /></td>
</tr>


<tr>
<td height="30"><div align="center" class="Estilo4">Provincia</div></td>
<td><input name="provincia" type="text" size="35" maxlength="20" /></td>
</tr>
<tr>
<td height="30"><div align="center" class="Estilo4">Tel&eacute;fono</div></td>
<td><input name="telefono" type="text" value="Campo obligatorio" size="35" maxlength="35" /></td>

</tr>
<tr>
<td height="30"><div align="center" class="Estilo4">E-mail</div></td>
<td><input name="email" type="text" size="35" /></td>
</tr>
<tr>
<td><div align="center" class="Estilo4">Descripci&oacute;n</div></td>

<td><textarea name="descripcion" cols="30" rows="5">Me gustaría recibir información de...</textarea></td>
</tr>
<tr>
<td><div align="center">
<input name="Submit" type="submit" class="Estilo1" value="Enviar" />
</div></td>
<td><div align="center">
<input name="Submit2" type="reset" class="Estilo1" value="Borrar" />

</div></td>
</tr>
</table>
</form>