score:1

Accepted answer

In PHP, join is an alias for implode. So right syntax is implode ( string $glue , array $pieces ) : string.

And an answer is:

<?php echo implode(',', $arrayTanggal) ?>

Related Query

More Query from same tag