I have an array $email
like this:
Array
(
[email_id] => [email protected]
)
Array
(
[email_id] => [email protected]
)
Array
(
[email_id] => [email protected]
)
I need this array to be in this format
'[email protected]', '[email protected]', '[email protected]' // RESULT EXPECTED
I am doing this to get my result:
$emails = implode(", " , $email);
But it results in this:
[email protected]@[email protected] // ACTUAL RESULT
What should i do get the result?