Forum Moderators: coopster
How do I extract the first letter of a word in php?
Turbo
$firstletter = str_split($word)[0];
$firstletter = substr($word, 0, 1);
see also: [php.net...]