is it possible to alphabetize all the words in a string using php? im trying to alphabetize email addresses that are stored in a text file. thanks in advance.
Sure: split() the words into an array, and sort the array.