php capitalize only first letter of words code example
Example 1: ucfirst
<?php
/* Convert the first character of "hello" to uppercase: */
echo ucfirst("hello samy!");
//output : Hello samy!
?>
Example 2: php uppercase each word
$upperCaseSentance=ucwords("i do not feel good");//I Do Not Feel Good