<?

//format titles with 1 chr of each word parsed out

$edit_title = explode(" ", $show_title);

while (list ($key, $value) = each ($edit_title)) {

$first = $value{0};
$formated_first = "<span class = 'title1'>$first</span>";
$remainder = substr($value, 1);
$formated_remainder = "<span class = 'title2'><strong>$remainder</strong></span>";
$formated_show_title = "$formated_first$formated_remainder ";
echo "$formated_show_title";
}

?>