Hi.
I'm using
print_r($_POST);
to check my data, but I'm trying to figure out the name of the array that it shows me. Can you help? The output looks like this:
array(2) { ["Korean"]=> string(2) "10" ["Swedish"]=> string(2) "66" }
result_name result_val
Korean 10
Swedish 66
(The table comes from debug code and is not the result of the print_r function)
So I'm looking for the name of the array that contains the 2 datasets.