Possible Duplicate:
How to create comma separated list from array in PHP?
I have an array as follows;
$array = array(1,2,3,4,5);
I want to print
or echo
this variable as 1,2,3,4,5
. What is the simplest method for this?? I printed array[0]
first and then skipped first value and used foreach
function to echo all remaining ",".$value
.