Is it possible to have a variable made from an array of ojects.
I have $t = array( "0", "1"," $i, "_", $j);
where $i and $j are in a for loop to increase there values($i & $j both = 0 first time throuh the loop). Is it any way possible to take each of those elements and make a variable out of the combo of
$t[0].$t[1].$t[2].$t[3].$t[4] and have it become the variable $0_1_0_0 .... $0_1_1_1 and so on, and then later assign values to those variable names ($0_1_0_0)?