Tema: formulario
Ver Mensaje Individual
  #3 (permalink)  
Antiguo 28/05/2010, 18:56
Avatar de dcreate
dcreate
 
Fecha de Ingreso: octubre-2009
Ubicación: Veracruz
Mensajes: 536
Antigüedad: 15 años, 5 meses
Puntos: 22
Respuesta: formulario

o tambien mas facil puedes hacer esto:

Código HTML:
Ver original
  1. <form action="b.php" method="post" >
  2. Ingresa tu identificador<br />
  3. <input type="hidden" value="<?php echo $_POST['a']; ?>" name="a">
  4. <input type="text" name="b" /><br />
  5. <input type="submit" value="Entrar" />
  6. </form>