Ver Mensaje Individual
  #4 (permalink)  
Antiguo 03/06/2009, 01:29
Avatar de Marvin
Marvin
Colaborador
 
Fecha de Ingreso: febrero-2005
Ubicación: global $Chile->Santiago;
Mensajes: 1.991
Antigüedad: 19 años, 2 meses
Puntos: 81
Respuesta: Cuestion sobre Arrays

Trata con algo asi:
Código php:
Ver original
  1. $matriz[0] = array(a,b,c,d);
  2. $matriz[1] = array(e,f,g,h);
  3. $matriz[2] = array(i,j,k,l);
  4. $matriz[3] = array(m,n,o,p);
  5.  
  6. echo $matriz[0][0]; //resultado: a
  7. echo $matriz[0][1]; //resultado: b
  8. //... etc
Suerte!
__________________
El que dice "Solo sé que nada sé", esta asumiendo que sabe algo.
Lea las FAQ's!