Try as I might, I cannot parse out this array. I have an array, when I run var_dump($array->chart()); it outputs the following
array(5) { ["i1"]=> string(3) "430" ["c1"]=> string(2) "21" ["ct2"]=> string(5) "98%" ["ec3"]=> string(6) "68.4" ["ea4"]=> string(5) "3.9" }
I would like to get something like:
i1 = 430
c1 = 21
ct2 = 98%
ec3 = 68.4
ea4 = 3.9
... but I cannot parse out the array, for some reason I always find associative arrays difficult.
Can anyone please help?