|
Posted by Jay on 07/28/06 15:15
Hi Ian
You could simply use a multidimensional array ;)
Like
$AllItems = array();
for($i = 0; $i < 10; ++$i)
{
$TestData = Array($i,$i*2,"Foo, ");
array_push($AllItems, $TestData );
}
Then you can access your array via $AllItems[ any valid index]
maybe this is what you want
Best regards
Navigation:
[Reply to this message]
|