i've very basic associative array in php
<?php
$basic = array(
'one'=>array(
'value'=>'a',
'color'=>'blue'
)
);
?>
now after some lines of code i've to add this array
<?php
$more_basic = array(
'two'=>array(
'value'=>'b',
'color'=>'yellow'
)
);
?>
the result should be like this
<?php
$basic_result = array(
'one'=>array(
'value'=>'a',
'color'=>'blue'
),
'two'=>array(
'value'=>'b',
'color'=>'yellow'
)
);
?>
i'm unable to create the logic