sure, you couldmake an array of arrays.. i think you are on the right track , just need a little help with the syntax. maybe try this:
PHP Code:
<?
for($i=0;$i<$noOfArrays;$i++){
// now just make a new array
$myArrayOfArrays[] = array();
}
?>
$myArrayOfArrays is a container for all your arrays that were created. They are all empty arrays, but they do exist.
hope that helps.