Ver Mensaje Individual
  #6 (permalink)  
Antiguo 05/10/2011, 11:19
jorgegetafe
 
Fecha de Ingreso: febrero-2008
Ubicación: Madrid
Mensajes: 474
Antigüedad: 16 años, 3 meses
Puntos: 1
Respuesta: Problema recoger formulario

Cita:
Iniciado por CesarHC Ver Mensaje
Esteee te has equivicado, no es "type=post" si no "method="post".

Código HTML:
Ver original
  1. <form name="formulario"  method="post"  action="prueba.php">
  2.    <input type="text" name="identificador"/>
  3.    <input type="submit" name="botonEnviar" value="Entrar"/>                      
  4.  </form>



Código PHP:
Ver original
  1. <?php
  2.   echo $_POST['identificador'];
  3. ?>
Premio!!!! dios mio que cegato!!!! muchas gracias por prestarme tus ojos.