Hello Guys i need to do this,
I have a common loop
foreach ($stuffs as $stuff) { echo $stuff; }
Lets assume $stuff is an \'id\' of a my
Should be as simple as:
$string = implode(",",$stuffs); echo $string