Just one quick thing. How do you capitalize the first letter of a word?
like "hello" to "Hello"
I'm pretty sure its possible just not sure how to use the functions.
Thanks.
| SitePoint Sponsor |
Just one quick thing. How do you capitalize the first letter of a word?
like "hello" to "Hello"
I'm pretty sure its possible just not sure how to use the functions.
Thanks.





PHP Code:$word = "hello";
$word = ucfirst($word); // Hello
Bookmarks