Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/03/2011, 16:22
Rolldi
(Desactivado)
 
Fecha de Ingreso: mayo-2005
Ubicación: España
Mensajes: 471
Antigüedad: 19 años
Puntos: 45
Respuesta: Google y buscador interno...

index.php:
Código HTML:
Ver original
  1. <form action="busqueda.php" method="post">
  2. <input type="text" name="b">
  3. </form>

busqueda.php:
Código PHP:
Ver original
  1. $b = $_POST['b'];
  2. header("Location:busqueda.php?b=".$b."");

Ó

[HIGHLIGHT="HTML"]
Código HTML:
Ver original
  1. <form action="busqueda.php" method="get">
  2. <input type="text" name="b">
  3. </form>