I could do so
$array = array(12, 14, 121, 123);
$var = $array[0].", ".$array[1].", ".......
echo $var
But how do I do if I do not know the exact size of the array ?
Because I'm getting it through a post that comes from a <select multiple="multiple"></select>
So you can not tell the exact size of it.