i have this:
<?php
$values = $cfs->get('promoter');
if (!empty($values)) {
echo $cfs->get_labels('promoter');
echo implode(', ', array_keys($values));
}
?>
<br />
which prints something like this:
PromoterPromoter1, Promoter2
when i'd like something like this:
Promoter: Promoter1, Promoter2
also, how could i include the <br />within the php, so if the field is blank, the line break is also excluded?
thanks.