Hi,
I have a list of several thousand words that I want to use to create a list of all possible combinations of those words (only two words in each combination though).
e.g.
word1
word2
word3
word4
to
word1word2
word1word3
word1word4 and so on.
I would usually do this in excel but it is proving too slow, so I plan to try in PHP.
I don't have much of an idea on how to approach this, does anyone have any suggestions.
Thanks in advance