Yo!
I was wondering if it is possible to assign an array another array, I mean like this:
$arr1 = array(1, 2, 3, 4, 5);
$arr2 = array()
$arr2[0] = $arr1;

so that the element of $arr2 contains $arr1 like:
$arr2[0][0] == 1
I've tried this, but it does not work. Does anyone have any ideas how this could be 
accomplished without me not having to do like this:
$arr2[0] = $arr1[0];
$arr2[1] = $arr1[1];
etc, etc...

/Broder

Reply via email to