I have some words in capital letters and i want to display only the first letter in caps. e.g i have AN EXAMPLE and i'd like to display it as An Example. Is there a way to do this?
Yes there is. Go here, look through the list of string functions and descriptions of what they do, and click on strtolower() and ucwords(). There's an example for what you want to do on the ucwords() page.
i use this for first letter as a cap for the db...
ucfirst($_POST['username'];) //capitalises the first letter only
ucfirst works pretty much with anything...
I've tried both ways and ucwords() is exactly what i was looking for, however there's a problem. It will work for the english words, but not for the greek words i'm also using. Is there a solution for this?