Ive always used implode() without any separating string. example:
$test=array("1","2","3");
$together=implode($test)
The code works for me, but should I be writing it more like this?
$test=array("1","2","3");
$together=implode("", $test)
Just curious...