PHP Text Formatting Functions
Text Formatting Functions
<?
echo strtoupper("all caps");
echo strtolower("all lowercase");
echo ucfirst("first letter is caps");
echo ucwords("Every 1st letter in a word is caps");
?>
<?
echo strtoupper("all caps");
echo strtolower("all lowercase");
echo ucfirst("first letter is caps");
echo ucwords("Every 1st letter in a word is caps");
?>