Here is what I have as a result using print_r($rate);
Array ([ups] => Array ( [03] => 11.06 ) )
Array (
[ups] => Array ( [03] => 11.06 ) )
[ups] => Array (
[03] => 11.06 ) )
[03] => 11.06 )
)
What I am attempting to do unsuccessfully:
echo($rate['03']);
I think you want
echo $rate['ups']['03'];