I have
$statement = Array
(
[0] => Array
(
[red] => 06-01-2012
[green] => 436
[blue] => MEDIA
[black] => 2006
)
[1] => Array
(
[red] => 06-01-2012
[green] => 430
[blue] => MEDIA
[black] => 2007
)
);
And I want to add [flex] => 1
into array 1 by using something like $statement[1]. I have tried with array merge but they have combined array 0 and 1. Basically I want to add to the latest one.