I have fname and lname in my database, and a name could be stored as JOHN DOE or john DOE or JoHN dOE, but ultimately I want to display it as John Doe
fname being John and lname being Doe
|
feedback
|
|
seeing it is tagged PHP:
to uppercase first letter of the first word or
to uppercase the first letter of every word you might want to use those in combination with
to normalize all names to lower case first. | ||||
|
feedback
|
|
Be aware that there are other capitalisation formats, such as John McDoe, John D'Oe, John de O, and John van den Doe. | |||||||||||
feedback
|
|
I'm not sure where and how you want to display it, but if it's on a web-page you might try simply altering the display using CSS. Try adding:
to the relevant rule, like this:
if you put the name in a div or span with class="name". Of course, this will not in any way alter the database entry, but I wasn't clear which was preferable. | |||
|
feedback
|
|
An example from php.net:
Bear in mind the notes about the locales though... | |||
|
feedback
|
|
Combining PHP shorthand functions strtolower and ucwords solves your problem:
On a side note, keep in mind that you can do that sort of data beautification at many different stages:
| ||||
|
feedback
|
|
For simple names, this will work. Beware of special cases (like "Ronald McDonald" in the below example). In SQL Server:
In Oracle
| ||||
|
feedback
|
|
Change the names to lower and then add ('A' - 'a') to the first letter of fname & lname. | |||
|
feedback
|