i have the folowing code that gives me the first letter of each word.
$string = $rowec['doopnamen'];
$punt =".";
$words = explode(" ", $string);
$doopnamen = " ";
foreach ($words as $value) {
$doopnamen .= substr($value, 0, 1);
}
But how can i get a dot after each letter ?
Thanks in advice John