Ver Mensaje Individual
  #5 (permalink)  
Antiguo 05/10/2011, 11:16
Avatar de CesarHC
CesarHC
 
Fecha de Ingreso: junio-2011
Ubicación: localhost
Mensajes: 566
Antigüedad: 12 años, 11 meses
Puntos: 56
Respuesta: Problema recoger formulario

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. ?>
__________________
Solo la práctica no te traicionara ¡¡¡¡¡¡

Seguir el camino tu debes PHP The Right Way.