Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/01/2008, 15:35
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 17 años, 11 meses
Puntos: 2135
Re: extraer dato de un GET de diferentes maneras

Es mejor si usas la sintaxis de array:
Código HTML:
<input type="text" name="matriz[]" value="" /> 
Y la rescatas en PHP:
Código PHP:
$matriz $_GET['matriz'];
foreach( 
$matriz as $elemento ) {
       echo 
$elemento;

Saludos.