I have a array like this-
$array = array('o' => 'one', 't' => 'three', 'f' => 'four');
I want to add a new element in the 't' key of the array. The result will be like the following:
$array = array('o' => 'one', 't' => 'three','six', 'f' => 'four');
How can i do this?
tkey$array['t'] .= ',six';?