OK, here is where I get lost. I do the following: print_r($out);
This gives me the following:
Array ( [0] => Array ( [0] => 1212.70 [1] => 1161.62 [2] => 0 [3] => 0 [4] => 0 [5] => -84 [6] => 10 [7] => 105 [8] => 8 [9] => 0 [10] => 0 [11] => 0 [12] => 03:13:15 [13] => 2004-11-11 01:01:52 [14] => 240 [15] => 209 [16] => 1.15 [17] => 1.24 [18] => 6 [19] => 3 [20] => 8 [21] => 3.33% [22] => 7 [23] => 3.35% [24] => 0 [25] => 0 [26] => 0 [27] => 0.00% [28] => 0.00 [29] => 0 [30] => 0.00% [31] => 0 [32] => 0 [33] => 23 [34] => 178 [35] => 0 / 2 [36] => 0.00% [37] => 0 / 0 [38] => 0.00% [39] => 0 / 105 [40] => 0.00% [41] => ) [1] => Array ( [0] => 1212.70 [1] => 1161.62 [2] => 0 [3] => 0 [4] => 0 [5] => -84 [6] => 10 [7] => 105 [8] => 8 [9] => 0 [10] => 0 [11] => 0 [12] => 03:13:15 [13] => 2004-11-11 01:01:52 [14] => 240 [15] => 209 [16] => 1.15 [17] => 1.24 [18] => 6 [19] => 3 [20] => 8 [21] => 3.33% [22] => 7 [23] => 3.35% [24] => 0 [25] => 0 [26] => 0 [27] => 0.00% [28] => 0.00 [29] => 0 [30] => 0.00% [31] => 0 [32] => 0 [33] => 23 [34] => 178 [35] => 0 / 2 [36] => 0.00% [37] => 0 / 0 [38] => 0.00% [39] => 0 / 105 [40] => 0.00% [41] => ) )
So that at least tells me I am pulling numbers, and far more than the 13 or 14 I thought were in my dataset. My question is how do I echo particular ones?
echo $out[14]; does not produce anything, but should echo out "240".
Any ideas?