Hello,
I'm very new here. I tried posting this in a different forum but I think it fits better here and I'm going to try to simplify it. Here is the code I'm working with:
for ($i=0; i<10; i++)
{
$arraynumber{$i}[0] = 5;
$arraynumber{$i}[1] = 10;
}
I'm not actually trying to get THOSE values stored in the new array, it's just an example. I'm just trying to learn how to use the $i counter variable number in the name of the new array the loop creates every iteration. My goal is by the time the loop is done to be able to reference $arraynumber7[1] and get the value 10 (or whatever value I end up using in my actual script). Thanks for any help you can provide.