Possible Duplicate:
How to create comma separated list from array in PHP?
My array looks like this:
Array
(
[0] => lorem
[1] => ipsum
[2] => dolor
[3] => sit
[4] => amet
)
How to transform this to a string like this with php?
$string = 'lorem, ipsum, dolor, sit, amet';