Ver Mensaje Individual
  #10 (permalink)  
Antiguo 29/04/2009, 07:57
Avatar de skatomundo
skatomundo
 
Fecha de Ingreso: junio-2002
Ubicación: Santiago - CL
Mensajes: 2.532
Antigüedad: 21 años, 10 meses
Puntos: 125
Respuesta: formulario en html

Agrupa todos tus input dentro de una etiqueta FORM

Más o menos así:
Código PHP:
<!-- inicio del Form -->
<
form name="form1" id="form1" method="post" action="pagina.php">

Nombre: <input type="text" name="nombre" id="nombre" />
Ciudad: <input type="text" name="ciudad" id="ciudad" />
Otro: <input type="text" name="otro" id="otro" />

<
input type="submit" value="Guardar" name="btn_guardar" />
<!-- 
fin del Form -->
</
form
Saludos,