Hello everyone, is there a way that I can dissect a person full name, that is pulled from mysql database, into first name, middle name and last name and stored it into php variables? thanks..
use php explode to extract names by splitting on spaces? explode(" ", "first middle last") but remember there are alot of ppl that have more then one name...
thanks for your reply, yeah that is exactly my problem, I have employee column with almost 500 records and most of the names have two strings in first name and also two strings in last name..
yeah actually I tried some solution here, but this was a bit painful, I just manually editted it using excel, I used text to column tool and manually fix the names, and that's it, a last option painful solution... ... hehe anyway thanks for your reply..