Using PHP3,,,,,,
i have a multi-dim array that is 4 layers deep, using counters , ji, j, k, l etc... I count the values retrieved form the table & use the count as a limit when building the array..
I pull variables out of a table & start the first level as follows;
for ($i=0; $i<$count; $i++) {
$Cx[$i]
$var_list2[$i] = $cx[$i];
$var_list2[$cx[$i]] = array("");
}
The second level is acquired in the same manner;
$var_list2[$var_list2[$j]][$k] = $gx[$k];
The third level is where