Comment convertir le tableau en chaîne avec des virgules en php
$string = implode(', ', $tags);
Worried Wolf
$string = implode(', ', $tags);
$tags = implode(', ', array('tag1','tag2','tag3','tag4'));