I have an array $skills. I want to make a comma seperated list of all the skills
.
I thought I could do this with array implode, but it looks like I'll have to use a foreach() and append to a string. Is there a way to do this with just array implode?
[skills] => Array
(
[0] => Array
(
[email] => don.pinkus@gmail.com
[skill] => Statistics
)
[1] => Array
(
[email] => don.pinkus@gmail.com
[skill] => Adobe Creative Suite
)
[2] => Array
(
[email] => don.pinkus@gmail.com
[skill] => HTML + CSS
)
[3] => Array
(
[email] => don.pinkus@gmail.com
[skill] => Web Analytics
)