How To Make Capital Letters In Php Capitalise Words
Post Description:
Post Tags: how, to, make, capital, letters, in, php, capitalise, words, free php support, php scripts, php questions, php answers, programming, codes, scripts
This Post Has Been Viewed 1101 Times Since Mon Feb 25, 2008 8:28 am Posted By
hostman with 1 replies
Next Post »»
how to make capital letters with CSS style capitalise words
ucwords()
to capitalize a word you use the ucwords() function.
lest say i want to capitalise this: wallpaperama is cool
i can use this:
<?php
$word = "wallpaperama is cool";
echo ucwords($word);
?>
the output will be:
Wallpaperama Is Cool
Comments and replies About How To Make Capital Letters In Php Capitalise Words