View Single Post
Old 07-14-2005, 03:08 PM   #2 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,444
sde is on a distinguished road
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.
__________________
Mike
sde is offline   Reply With Quote