How do I make the first letter of each word upper case?
It's a very simple function to use, as you can see here:
<?php
$mystring = "i think this is a great page title";
echo ucwords($mystring);
?>
prints:
I Think This Is A Great Page Title
Comment on this Question and Answer >>>
ASK A QUESTION
More strings PHP Questions
How do I find the last occurrence of a character in a string?How do I turn a string into an array?
How do I break email address into username and hostname?
How do I find the length of a string in PHP?
How do I join strings together?
