![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
03/06/2009, 01:29
|
![Avatar de Marvin](http://static.forosdelweb.com/customavatars/avatar88838_1.gif) | Colaborador | | Fecha de Ingreso: febrero-2005 Ubicación: global $Chile->Santiago;
Mensajes: 1.991
Antigüedad: 20 años Puntos: 81 | |
Respuesta: Cuestion sobre Arrays Trata con algo asi:
Código php:
Ver original$matriz[0] = array(a ,b ,c ,d ); $matriz[1] = array(e ,f ,g ,h ); $matriz[2] = array(i ,j ,k ,l ); $matriz[3] = array(m ,n ,o ,p ); echo $matriz[0][0]; //resultado: a echo $matriz[0][1]; //resultado: b //... etc
Suerte!
__________________ El que dice "Solo sé que nada sé", esta asumiendo que sabe algo. Lea las FAQ's! |