I'm facing a array structure problem here.
Why this array
$plans = array(
'id' => 'free',
'name' => 'Free',
'sums' => array(
'usd' => 0,
),
'id' => 'trial',
'name' => 'Trial',
'sums' => array(
'usd' => 0,
),
);
returns me only this (last result of my array):
Array
(
[id] => trial
[name] => Trial
[sums] => Array
(
[usd] => 0
)
)
Any help with this will be very appreciated.
Thanks a lot.