Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/02/2008, 09:40
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: Paso de variables por la URL

Usa un arreglo:
Código PHP:
$key = array();
$key[] = "NIF";
$key[] = "AFP";
$qString http_build_query$key );
echo 
"search.php?" $qString
Así en tu otra pagina podrás rescatar:
Código PHP:
$keys $_GET['key'];
echo 
$keys[0]; // NIF
echo $keys[1]; // AFP 
Saludos.