Hi , I have some fields with data in uppercase and i know I can use php function to convert *ALL* to lower ...http://ie.php.net/strtolower But any ideas how to keep the first letter capital and convert the rest??? Hmmmmmm
$text = "hello world"; echo strtoupper($text); // HELLO WORLD echo ucfirst($text); // Hello world echo ucwords($text); // Hellow World