I currently have a reporting class that pulls a large series of data from my database and formats it into a 4+ dimensional array to be returned. This works fine but I fear it isn't the best way. Should I be using JSON, XML, interfaces, ect...
Basically what is the best way to return this data?
Here is an example of how I'm using a multidimensional associative array to return the data:
$results[$teacherID][$studentID][$subject][$testID]
and a sample view of the structure:
Array
(
[17520] => Array
(
[01356] => Array
(
["Math"] => Array
(
[0130] => 75.2
[0215] => 76.8
)
["Science"] => Array
(
[0130] => 85.2
[0215] => 72.2
[0308] => 96.3
[0320] => 68.4
)
)
[01468] => Array
(
["Math"] => Array
(
[0130] => 23.2
[0215] => 54.8
)
["Science"] => Array
(
[0130] => 72.6
[0215] => 79.1
[0308] => 68.7
[0320] => 72.2
)
)
)
[17522] => Array
(
ect...