I have array:
$array = array(
0 => array('first' => 'aaa',
'second' => 'bbb'),
1 => array('first' => 'erw',
'second' => 'wer'),
2 => array('first' => 'aaawe',
'second' => '345'),
3 => array('first' => 'aa345a',
'second' => 'dfgdfg'),
);
and i would like get values with implode:
$first = implode(';', $array['first']);
$second = implode(';', $array['second']);
But of course this not working. How is the best way for this?