
02/12/2009, 07:40
|
 | | | Fecha de Ingreso: noviembre-2009
Mensajes: 106
Antigüedad: 15 años, 3 meses Puntos: 1 | |
Respuesta: formulario Esta es la estructura de un formulario. En el action="" pones la pagina a donde quieres direccionarlo.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Formulario</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<table width="27%" border="1">
<tr>
<td width="33%">nombre:</td>
<td width="67%"><input type="text" name="textfield" id="textfield" /></td>
</tr>
<tr>
<td>E-mail:</td>
<td><input type="text" name="textfield2" id="textfield2" /></td>
</tr>
<tr>
<td>Comentarios:</td>
<td><textarea name="textarea" id="textarea" cols="45" rows="5"></textarea></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="button" id="button" value="ACeptar" /></td>
</tr>
</table>
</form>
</body>
</html> |