I have tried to do this without luck. What I want to do is assign an array as the value of an array element, effectivly making it a multidimentional array. BTW, I am using PHP3. Here is my code:
$C[$idx][] = explode("|", $qs[3]);
echo "C$cho' TYPE=text VALUE='$C[$idx][$cho]' SIZE=70 MAXLENGTH=150> <BR>\n";
All this prints out is "Array[0]." (where idx = 1 through 3 and c = 0 through 2)
How do I build/use a 2 dimentional array?
-matthew