|
if you mean a array inside of another array you need to use qoutes and brackets on it like
$a = 0,1,2,3,4,5,6,7,8,9,10,11;
$b =-1,0,1,2,3,4,5,6,7,8,9,10;
$c = $a.$b;
echo "{$c[2][6]}";
would return as a 5
Last edited by flatrat; 07-26-2009 at 02:11 AM..
Reason: forgot the ; like always
|