//////////////////////////////Task12 ////////////////////////// Task12 '; //SubString $name = substr($greet, 14); echo $name; echo '
'; //Replace one string $replace = str_ireplace('Vusi', 'Blessing', $greet); echo $replace; echo '
'; //First Word Capitalization $name_first = lcfirst($greet); echo $name_first; echo '
'; //Camel Notation $camel = ucwords($greet); echo $camel; echo '
'; //UpperCase $uppercase = strtoupper($greet); echo $uppercase; echo '
'; //Chnage Sequence $squ = strrev($greet); echo $squ; echo '
'; ?>