Ver Mensaje Individual
  #3 (permalink)  
Antiguo 04/05/2012, 12:34
Avatar de gjx2
gjx2
 
Fecha de Ingreso: agosto-2008
Ubicación: R.D
Mensajes: 1.153
Antigüedad: 15 años, 8 meses
Puntos: 139
Respuesta: Variables GET y símbolos "?" y "&"

Código HTML:
Ver original
  1. http://www.web.com/index.php?error[]=1&error[]=2

Para recuperrarla

Código PHP:
Ver original
  1. echo $_GET['error'][0]."<br />";
  2. echo $_GET['error'][1];
Saludos