I would like to store and print a 2D array of arrays. For example,
seats[0] = "A1,A2,A3";
seats[1] = "B1,B2,B3";
then I have:
$testArray[0]['seats'] = $seats[0];
$testArray[1]['seats'] = $seats[1];
Now, I want to print $testArray with the values of the index and the values of $seats. How can I do that? For example, I want to display:
0 A1 A2 A3
1 B1 B2 B3
Thank you in advance!