Users of our website often type in a lot of garbage for the name and address information. eg, all CAPS, all lower case etc.
It looks a lot better if we fix the case for them, but can anyone suggest a good way of doing this. A simple approach is just to capitalise each word in their name, but this fails when dealing with some names. Here are a few examples...
- bob mcdonald
- sarah o'connor
- MR PETE SMITH
and here is what I would like to transform them into
- Bob McDonald
- Sarah O'Connor
- Mr Pete Smith
I'm using PHP if it helps.