Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/10/2007, 11:36
Avatar de Seppo
Seppo
 
Fecha de Ingreso: marzo-2005
Ubicación: Buenos Aires, Argentina
Mensajes: 1.284
Antigüedad: 20 años
Puntos: 17
Re: Duda con texto

Si el formulario se manda por post, tenés que usar $_POST, si es por querystring, $_GET

Código PHP:
<?php
echo $_POST['nombre'];
?>
<form action='pagina.php' method='post'>
<input type='text' name='nombre' />
<input type='submit' name='enviar' value='Enviar' />
</form>