I am stuck with what it seems to me a simple problem and I need some help. I am very new php programmer ... I am pretty sure that you experts can give me the answer in few words..
Here it is :
I have a multidimensional array that looks like this :
Code: Select all
Array ( [2007] => Array ( [0] => Array ( [mois] => 7 [path] => /var/www/html/rapports/ARCHIVES/2007/7 ) [1] => Array ( [mois] => 6 [path] => /var/www/html/rapports/ARCHIVES/2007/6 ) ) [2006] => Array ( [0] => Array ( [mois] => 1 [path] => /var/www/html/rapports/ARCHIVES/2006/1 ) ) )Code: Select all
2007
0
path : /var/www/html/rapports/ARCHIVES/2007/
month : 7
1
path : /var/www/html/rapports/ARCHIVES/2007/
month : 6
2006
0
...I hope you could answer me.
Thanks