hi friends I have a php array for eg.
$mob_numbers= array(12345674, 12345675, 12345676,12345677);
I want to eacho out all of them at once so that it appears
12345674,12345675,12345676,12345677
(with comma) .
How do i do it ? I tried array explode, didn't work. Pls help