I have a list of 400 words, all in lower case.. How would I change the capitalization of the first letter to upper case using php.
use function ucfirst() or ucwords() see the string functions in the php manual
example $str="my string";
$str= ucwords($str); echo $str;// echoes My String
cheers!